会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
aLa神灯
snowball
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
10
11
12
13
14
15
16
17
18
···
23
下一页
2018年1月26日
链表
摘要: http://blog.csdn.net/gaoxiangnumber1/article/details/44634485
阅读全文
posted @ 2018-01-26 09:31 aLa神灯
阅读(79)
评论(0)
推荐(0)
编辑
O(1) O(n)
摘要: /** * O(1) O(n) * * 一个算法在规模不断增大时对应的时间复杂度(变量变为n时,算法需要操作的量级) * */
阅读全文
posted @ 2018-01-26 08:44 aLa神灯
阅读(109)
评论(0)
推荐(0)
编辑
2018年1月25日
9-1迭代器
摘要: package gather; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; public class TestThree { public static void main(String[] args) { /** ...
阅读全文
posted @ 2018-01-25 19:27 aLa神灯
阅读(84)
评论(0)
推荐(0)
编辑
位移运算符
摘要: package gather; public class TestTwo { public static void main(String[] args) { /** * >>> 忽略符号位,空位用0补齐 */ // int x = 7; int x = -7; ...
阅读全文
posted @ 2018-01-25 13:49 aLa神灯
阅读(118)
评论(0)
推荐(0)
编辑
2018年1月24日
Calendar
摘要: Calendar cal = Calendar.getInstance(); System.out.println(cal.get(Calendar.YEAR)); System.out.println(cal.get(Calendar.HOUR_OF_DAY));
阅读全文
posted @ 2018-01-24 16:19 aLa神灯
阅读(131)
评论(0)
推荐(0)
编辑
java数字太大转换成科学计数法的问题
摘要: double num = 168588866654.0d; System.out.println(num); java.text.DecimalFormat df = new java.text.DecimalFormat("##########.00"); System.out.println(df.format(num));
阅读全文
posted @ 2018-01-24 16:00 aLa神灯
阅读(653)
评论(0)
推荐(0)
编辑
AppID、AppKey、AppSecret
摘要: AppID:应用的唯一标识 AppKey:公匙(相当于账号) AppSecret:私匙(相当于密码) token:令牌(过期失效) 使用方法 1. 向第三方服务器请求授权时,带上AppKey和AppSecret(需存在服务器端) 2. 第三方服务器验证AppKey和AppSecret在DB中有无记录
阅读全文
posted @ 2018-01-24 14:47 aLa神灯
阅读(926)
评论(0)
推荐(0)
编辑
JSONObject
摘要: 依赖的jar包
阅读全文
posted @ 2018-01-24 09:40 aLa神灯
阅读(192)
评论(0)
推荐(0)
编辑
HttpURLConnection网略请求
摘要: package nettest; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.util.HashMap; impor...
阅读全文
posted @ 2018-01-24 09:03 aLa神灯
阅读(166)
评论(0)
推荐(0)
编辑
2018年1月22日
cvs 代码无法提交
摘要: cvs ,v: Permission denied 将账户权限改成管理员
阅读全文
posted @ 2018-01-22 13:21 aLa神灯
阅读(154)
评论(0)
推荐(0)
编辑
上一页
1
···
10
11
12
13
14
15
16
17
18
···
23
下一页
公告