2016年8月29日

该文被密码保护。 阅读全文
posted @ 2016-08-29 14:36 Boucher 阅读(5) 评论(0) 推荐(0)

2016年8月26日

摘要: 上述使用了this处,由于" "+this,java对String类重载了+,所以,+this时,默认调用this.toString()方法,而+this,正好处于this.toString()方法体内,导致无意识的进行了递归。 要想解决打印内存地址,只需调用Object.toString()即可。 阅读全文
posted @ 2016-08-26 15:09 Boucher 阅读(140) 评论(0) 推荐(0)

2016年8月25日

摘要: 题目:https://leetcode.com/problems/first-unique-character-in-a-string/ 难度:Easy 阅读全文
posted @ 2016-08-25 09:54 Boucher 阅读(143) 评论(0) 推荐(0)

2016年8月23日

摘要: web端:www.kaola.com wap端:m.kaola.com 阅读全文
posted @ 2016-08-23 15:15 Boucher 阅读(117) 评论(0) 推荐(0)
 
摘要: 其实并不是哈 阅读全文
posted @ 2016-08-23 11:49 Boucher 阅读(93) 评论(0) 推荐(0)

2016年8月22日

摘要: 上面的代码可以将 #abcd UUUU UUU#abc UUUa=b UUUpassword=#?==#FSS aU=Ub 改写成 a=b password=#?==#FSS 其中U代表空格 阅读全文
posted @ 2016-08-22 19:31 Boucher 阅读(114) 评论(0) 推荐(0)
 
摘要: 第二个其实也是对齐的,复制粘贴的时候格式弄乱了点 阅读全文
posted @ 2016-08-22 09:49 Boucher 阅读(2182) 评论(0) 推荐(0)

2016年8月17日

摘要: qaperf@hzbxs-perftest13:~/linsa/checkProperties$ touch $(date -d now "+%F_%T")".txt" qaperf@hzbxs-perftest13:~/linsa/checkProperties$ ls 2016-08-17_11:02:04.txt 阅读全文
posted @ 2016-08-17 11:06 Boucher 阅读(864) 评论(0) 推荐(0)

2016年8月16日

摘要: #!/bin/bash # by hzwuboxiao rm -rf std_chk.error wubox.res std_cfg_files=$(python -c 'import parserutil;parserutil.ConfigUtil("'$2'").get_prop_file_na 阅读全文
posted @ 2016-08-16 11:15 Boucher 阅读(190) 评论(0) 推荐(0)

2016年8月15日

摘要: 原文:http://www.ruanyifeng.com/blog/2009/10/5_ways_to_search_for_files_using_the_terminal.html 最近,我在学习Linux,下面是一些笔记。 使用电脑的时候,经常需要查找文件。 在Linux中,有很多方法可以做到 阅读全文
posted @ 2016-08-15 10:09 Boucher 阅读(186) 评论(0) 推荐(0)