摘要: Problem Description people in USSS love math very much, and there is a famous math problem . give you two integers n,a,you are required to find 2 inte 阅读全文
posted @ 2020-09-14 21:34 Cherish486 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 一、什么是自动装箱拆箱 很简单,下面两句代码就可以看到装箱和拆箱过程 1 //自动装箱 2 Integer total = 99; 3 4 //自动拆箱 5 int totalprim = total; 简单一点说,装箱就是自动将基本数据类型转换为包装器类型;拆箱就是自动将包装器类型转换为基本数据类 阅读全文
posted @ 2020-09-14 20:53 Cherish486 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 安装git: $ sudo apt-get install git 配置用户和密码 $ git config --global us... 阅读全文
posted @ 2020-09-14 20:46 Cherish486 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 一直不明白为啥github要使用ssh密钥(可能是我太小白吧) 通过阅读别人的blog发现了一个小小的好处,如下... 阅读全文
posted @ 2020-09-14 19:58 Cherish486 阅读(144) 评论(0) 推荐(0) 编辑