public System.DateTime LatestEditedTime { get; set;
} public string LatestEditedTimeValue { get { ...
分类:
数据库 时间:
2014-05-10 06:13:39
阅读次数:
365
最开始学习Java,接触到的应该就是main函数:Public static void
main(String args[]){}但是main函数为什么要这样写,又隐藏了哪些被忽视的知识,今天深入学习一下。关键字分析
最直观的就是逐个关键字分析,1.public2.static3.参数args[]....
分类:
编程语言 时间:
2014-05-10 05:58:44
阅读次数:
305
1 class SuperClass{ 2 3 public SuperClass() { 4
System.out.println("superclass "); 5 show(); 6 } 7 public void show() { 8
System.out...
分类:
编程语言 时间:
2014-05-10 05:47:03
阅读次数:
299
作用域当前类同一package子孙类其他packagepublic
√√√√protected√√√×friendly √√××private √×××不写时默认为friendly
分类:
编程语言 时间:
2014-05-10 05:13:46
阅读次数:
299
方法一:public class QuickSortExp1{ public static
void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6};
System.out.println("before sor.....
分类:
编程语言 时间:
2014-05-10 05:08:46
阅读次数:
496
public class TestSelectSort{ public static void
main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6};
System.out.println("before sortin.....
分类:
编程语言 时间:
2014-05-10 05:04:52
阅读次数:
322
/** * * @description * String utils * @author Czp *
@version 1.0(2014-5-9) * */public class StringUtil { /** * @description: * ...
分类:
其他好文 时间:
2014-05-10 03:21:53
阅读次数:
272
public class InsertSort{ public static void
main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6};
System.out.println("before sorting ,t.....
分类:
编程语言 时间:
2014-05-10 03:13:15
阅读次数:
342
问题描述:
ListView加入到ScrollView中之后,发现只能显示其中一条,具体原因得看一下源代码。现在先贴一下方案
(转自:http://blog.csdn.net/hitlion2008/article/details/6737459) Example: public
class Vie...
分类:
其他好文 时间:
2014-05-10 02:55:53
阅读次数:
296
/** * 转换图片成圆形 * * @param bitmap * 传入Bitmap对象 *
@return */ public static Bitmap toRoundBitmap(Bitmap bitmap)...
分类:
移动开发 时间:
2014-05-10 02:46:10
阅读次数:
436