test
摘要: PHP输出函数有echo()函数与print()函数以及格式化输出函数printf()函数和sprintf()函数。一、echo()函数echo()函数输出一个或多个字符串,可以用圆括号,也可不用,在实际应用中,我们一般不用圆括号;echo更象一条语句,无返回值。";echo"今天天气很好,我们出去... 阅读全文
posted @ 2015-02-12 16:30 Lechance 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 查看源码BitmapDrawable.java。BitmapDrawable有若干个构造方法。New BitmapDrawable(Bitmap bitmap)是早期的一个构造方法,在android 4.0已经过时,部分代码如下:this(new BitmapState(bitmap), null)... 阅读全文
posted @ 2015-02-12 12:04 Lechance 阅读(926) 评论(0) 推荐(0) 编辑
摘要: java中equals方法和“==”的区别:equals 方法是 java.lang.Object 类的方法。有两种用法说明:(1)对于字符串变量来说,使用“==”和“equals()”方法比较字符串时,其比较方法不同。“==”比较两个变量本身的值,即两个对象在内存中的首地址。“equals()”比... 阅读全文
posted @ 2015-02-12 11:52 Lechance 阅读(441) 评论(0) 推荐(0) 编辑
摘要: publicclassHeaderViewListAdapterextendsObjectimplementsFilterableWrapperListAdapterClassOverviewListAdapterusedwhenaListViewhasheaderviews.ThisListAda... 阅读全文
posted @ 2015-02-12 11:13 Lechance 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 1.Missing a Javadoc comment:缺少JavaDoc注释2.First sentence should end with a period:你的注释的第一行文字结束应该加上一个"."3.Expected @throws tag for 'Exception':在注释中希望有@t... 阅读全文
posted @ 2015-02-12 09:01 Lechance 阅读(201) 评论(0) 推荐(0) 编辑