https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Firefox_for_AndroidIN
THIS ARTICLEPrerequisitesADB setupOn the Android deviceOn the de...
分类:
移动开发 时间:
2014-06-12 07:33:41
阅读次数:
684
Execute shell commandsThere are a number of
different ways to run shell commands from Ruby.TheexeccommandKernel#execreplaces
the current process and r...
分类:
其他好文 时间:
2014-06-12 06:50:15
阅读次数:
281
类似于其他高级程序语言,Shell中case语句的作用也是作为多项选择使用,语法如下:
[plain]
case word in
pattern1)
Statement(s) to be execute if pattern1 matchs
;;
pattern2)
Statement(s) to b...
分类:
其他好文 时间:
2014-06-11 07:09:18
阅读次数:
212
错误:org.apache.jasper.JasperException:/index.jsp(2,0)UnabletoreadTLD"META-INF/c.tld"fromJARfile"file:/D:/svnframe/web/WEB-INF/lib/standard-1.1.2.jar":解决:移除lib下的jsp-api.jar和servlet-api.jar即可
分类:
其他好文 时间:
2014-06-10 23:46:20
阅读次数:
312
在使用maven 的过程中,发现几个有用的命令本来我在寻找设置
dependency:copy-dependencies 的 output 路径(默认在 target/dependency)百度了一下,搜索到了。不过我猜想,
maven 命令行应该也可以检索到。之前我使用过 mavn help:de...
分类:
其他好文 时间:
2014-06-10 19:30:56
阅读次数:
247
首先,查看SDK版本,一般有两处,第一处是project.properties文件中的target=android-8...
分类:
移动开发 时间:
2014-06-10 14:14:31
阅读次数:
223
C语言提供的基本数据类型:char , int ,float,
double。为什么没有其他语言中常见bool布尔数据类型呢?1.在标准C语言(ANSI C)中并没有bool数据类型
标准C中,表达式的值0为假,非0为真。一般,为了提高代码可阅读性,自定义3个int类型的宏:#include #de...
分类:
其他好文 时间:
2014-06-09 18:49:45
阅读次数:
281
http://poj.org/problem?id=1095先求出n个节点数的二叉树的形态有多少种。卡特兰数f[n]=f[n-1]*(4*n-2)/(n+1);再递归求。
1 #include 2 #include 3 #include 4 #define ll long long 5 #de...
分类:
其他好文 时间:
2014-06-09 15:14:11
阅读次数:
167