在activity中应该使用 如果使用 ,在跳转自定义Fragment是会编译报错。 wrong 2nd argument type.... 而在自定义的Fragment中使用getFragmentManager()则没问题。 通过查看源码可知,Acrivity中getFragmentManager ...
分类:
其他好文 时间:
2016-08-08 06:27:27
阅读次数:
701
CleverCode发现可以通过source来执行一个.sql文件。
1)?显示帮助。source (\.) Execute an SQL script file. Takes a file name as an argument.
2 test.sql文件
CREATE TABLE `tab_test` (
`id` bigint(20) unsigned...
分类:
数据库 时间:
2016-08-07 12:31:55
阅读次数:
420
String.valueOf 默认的方法 argument 可以为null 的 String.valueOf(null) 会调用更为具体valueOf(char[] data) 会在value.length 处抛空指针异常! case1: String.valueOf(null); case2: c ...
分类:
其他好文 时间:
2016-08-05 19:44:26
阅读次数:
189
p194.如何让一个函数调用自身: A: 函数内部可以使用其函数名 B:argument.callee进行调用 argument.callee是一个指向正在执行的函数的指针,但是在严格模式下,不能通过这种方式。 ...
分类:
其他好文 时间:
2016-08-03 18:27:18
阅读次数:
146
用的是wildfly 9.0.2 一:在myeclipse中新建wildfly 9.0.2的server(如何新建去网上搜) 二:修改wildfly server的argument(在run configurations里,不在preference里) 在Program arguments后面加入- ...
分类:
其他好文 时间:
2016-08-03 15:20:19
阅读次数:
197
Python的装饰器的概念,一直有点微妙。之前在StackOverflow上看过一篇感觉说明的很清楚的介绍: *A decorator must accept a function as an argument 参考地址: http://stackoverflow.com/questions/739 ...
分类:
编程语言 时间:
2016-08-02 19:23:59
阅读次数:
254
常量 val a: Int = 5 变量 var a: Int = 5 Any:匹配任何类型 ?:nullable,比如 a?.toString,如果 a 为 null 不会出错。 函数基本结构 String 字符串中可以加参数 print("First argument: ${array[0]}" ...
分类:
其他好文 时间:
2016-08-02 18:55:17
阅读次数:
170
设置java虚拟机大小可以让eclipse启动运行更快。。。。。。 在eclipse中点击window--preferences--java--Installed JREs。 然后看右边的框,鼠标点击打钩的那一条,点击Edit, 会弹出Edit JRE , 找到default VM argument ...
分类:
编程语言 时间:
2016-08-02 13:10:27
阅读次数:
137
分类: LINUX 分类: LINUX 参考资料:http://sns.linuxpk.com/space-566-do-blog-id-15819.html printf FORMAT [ARGUMENT]... printf OPTION 【功能】 格式化并打印数据. 【举例】 *打印整数和字符 ...
分类:
系统相关 时间:
2016-08-01 15:38:15
阅读次数:
184
#!/usr/bin/envpython
#-*-coding:UTF-8-*-
importargparse
parser=argparse.ArgumentParser()
parser.add_argument(‘--address‘,nargs=‘*‘,default=‘localhost‘,help="Mandatory,theaddresstoconnect")
parser.add_argument(‘-p‘,‘--port‘,type=int,help="Theporttolistenon...
分类:
编程语言 时间:
2016-07-21 20:17:49
阅读次数:
256