@Autowired的使用:推荐对构造函数进行注释 在编写代码的时候,使用@Autowired注解是,发现IDE报的一个警告,如下: Spring Team recommends "Always use constructor based dependency injection in your b ...
分类:
其他好文 时间:
2017-11-04 14:59:37
阅读次数:
151
We have two special characters. The first character can be represented by one bit 0. The second character can be represented by two bits (10 or 11). N ...
分类:
其他好文 时间:
2017-11-04 13:40:01
阅读次数:
136
1.O‘Reilly的《CSS PocketReference》是一本不错的CSS参考小书,记录了常用的元素属性。 2.下面的代码,链接的颜色并没有变成茶红色,还是浏览器默认的蓝色样式。 为什么会这样? 我们来看这一小段代码: 上面代码是这种格式:<p>...<a>..</a>...<em>..</ ...
分类:
Web程序 时间:
2017-11-03 21:54:13
阅读次数:
299
Eslint规范 for 循环禁止使用无限循环(这个非默认推荐) 不允许和负0比较 禁止在条件语句(if,while,do...while )中出现赋值操作 注意:该规则有个字符串选项,默认是“except-parens”,允许出现赋值操作,但必须是被圆括号括起来的;设置为“always”表示禁止在 ...
分类:
其他好文 时间:
2017-11-03 17:38:16
阅读次数:
6145
One day, Tom traveled to a country named BGM. BGM is a small country, but there are N (N <= 100) towns in it. Each town products one kind of food, the ...
分类:
其他好文 时间:
2017-11-01 14:51:11
阅读次数:
108
Given an array of characters, compress it in-place. The length after compression must always be smaller than or equal to the original array. Every ele ...
分类:
其他好文 时间:
2017-10-31 18:57:30
阅读次数:
128
在为tabBar添加背景图片时会遇到图片颜色与原图不一致的情况 使用imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal更改图片渲染模式 举个栗子: navi.tabBarItem.image = [[UIImage imageNamed ...
分类:
其他好文 时间:
2017-10-31 17:43:18
阅读次数:
142
Given a linked list, remove the nth node from the end of list and return its head. For example, Note:Given n will always be valid.Try to do this in on ...
分类:
其他好文 时间:
2017-10-31 11:18:39
阅读次数:
156
C. Short Program C. Short Program Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer an ...
分类:
其他好文 时间:
2017-10-29 21:59:02
阅读次数:
121
阅读目录 建议1:不要在常量和变量中出现易混淆的字母 建议2:莫让常量蜕变成变量 建议3:三元操作符的类型务必一致 建议4:避免带有变长参数的方法重载 建议5:别让null值和空值威胁到变长方法 建议1:不要在常量和变量中出现易混淆的字母 包名全小写,类名首字母全大写,常量全部大写并用下划线分隔,变 ...
分类:
编程语言 时间:
2017-10-29 12:53:53
阅读次数:
241