The method convert(String) of type DateConverter must override a superclass method那是因为你的Compiler 是jdk1.5,只要把它改为 1.6就可以了方法:j2ee换成 7
分类:
其他好文 时间:
2014-07-22 22:52:59
阅读次数:
154
在实际编码过程中,有时候会出现装箱和拆箱操作。下面就类分别认识一下:需要注意的是,类型转换和这个是不同的。Convert方法并没有发生装箱和拆箱操作,而是类型转换,包括int.parse等等。装箱,是把值类型拷贝了一个副本放在堆内存中。拆箱,在引用类型直接找到值类型存储的位置(Person对象是引用...
分类:
其他好文 时间:
2014-07-21 14:24:30
阅读次数:
258
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.题解:转换的方法:从左往右扫描罗马字符,如果当前的字符对应的数字比上一个数字小,就直接加...
分类:
其他好文 时间:
2014-07-21 10:05:42
阅读次数:
223
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.题解:基本的罗马字符和数字对应如下表所示:罗马字符数字I1V5X10L50C100D50...
分类:
其他好文 时间:
2014-07-21 10:05:16
阅读次数:
286
0x00本文属于随笔, 仅供作者学习记录.0x01 批量修改图片大小:root@host:~/$ find ./ -name '*.jpg' -exec convert -resize 220X520! {} {} \;备注: 上述命令中,find 路径 -name 匹配.jpg后缀的文件-exec...
分类:
系统相关 时间:
2014-07-21 09:35:06
阅读次数:
334
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2014-07-21 08:36:32
阅读次数:
208
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; ...
分类:
其他好文 时间:
2014-07-21 00:11:12
阅读次数:
254
string colorstr = "#FF4D4D4D";string hex = colorstr.ToString().Replace("#", "");byte alpha;byte pos = 0;if (hex.Length == 8){ alpha = System.Convert.ToByte(hex.Substring(pos, 2), 16); pos = 2;}else{ a...
分类:
其他好文 时间:
2014-07-20 09:15:00
阅读次数:
345
class TreeViewLineConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, System.Globalization.Culture...
分类:
其他好文 时间:
2014-07-18 13:39:42
阅读次数:
319
之前解析json一直用get的方法,但是如果抛异常会让解析中断很烦人,今天发现了JSONObject还提供了一个更好用的方法opt,看来以后文档还是要认真的读的,下面是文档中的原文。
A JSONObject constructor can be used to convert an external form JSON text into an internal form whose valu...
分类:
Web程序 时间:
2014-07-18 12:32:58
阅读次数:
285