码迷,mamicode.com
首页 >  
搜索关键字:level    ( 6507个结果
9种常见的Android开发错误及解决方案
整理总结了9个Android开发中的错误以及解决方案,共同探讨进步! 1. 如果你的项目的R文件不见的话,可以试下改版本号在保存,R文件不见一般都是布局文本出错导致. 2. 布局文件不可以有大写字母 3. 抛出如下错误WARNING: Application does not specify an API level requirement!, 是由于没有指定users s...
分类:移动开发   时间:2015-01-21 10:16:52    阅读次数:150
[linux驱动]linux驱动模块
一,内核模块的概念经常在内核驱动代码看到类似fs_init()等驱动初始化函数,那么这个和module_init()函数的差别在哪里,宏定义__define_initcall(level,fn)对于内核的初始化很重要,他指示编译器在编译的时候,将一系列初始化函数的起始地址值按照一定的顺序放在一个se...
分类:系统相关   时间:2015-01-20 22:02:55    阅读次数:245
chkconfig
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level ][系统服务...
分类:其他好文   时间:2015-01-20 20:07:16    阅读次数:186
php declare (ticks = N)
A tick is an event that occurs for everyNlow-level tickable statements executed by the parser within thedeclareblock. The value forNis specified using...
分类:Web程序   时间:2015-01-19 18:34:25    阅读次数:225
写好程序注释的十三条建议(转)
写好程序注释的十三条建议1. Comment each level(每个级别的注释有统一的风格)注释每一个代码块,并且在各个级别的代码块上,要使用统一的注释方法。例如:对于类,应包含简单的描述、作者以及最近的更改日期对于方法,应包含目的的描述、功能、参数以及返回值使用统一的注释规则对于一个团队是非常...
分类:其他好文   时间:2015-01-19 10:49:47    阅读次数:182
【leetcode】Binary Tree Zigzag Level Order Traversal
Binary Tree Zigzag Level Order TraversalGiven a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then...
分类:其他好文   时间:2015-01-18 18:21:13    阅读次数:151
leetcode------Binary Tree Level Order Traversal II
标题:Binary Tree Level Order Traversal II通过率:30.5%难度:简单Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from lef...
分类:其他好文   时间:2015-01-18 13:02:13    阅读次数:151
php递归打印目录
header("Content-type:text/html;charset=utf-8");function reddir($path,$level=0){ $dh = opendir($path); while(($row = readdir($dh)) !== false) ...
分类:Web程序   时间:2015-01-17 19:20:54    阅读次数:143
【leetcode】Binary Tree Zigzag Level Order Traversal (middle)
Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then right to left for the next level and al...
分类:其他好文   时间:2015-01-17 17:58:07    阅读次数:199
tomcat启动报错:Unsupported major.minor version 51.0
myeclipse中添加项目后,发现项目启动时报错:Unsupported major.minor version 51.0因为tomcat使用的jdk版本不支持你项目的jdk版本,需要你在myeclipse中配置几个版本:配置myeclipse中的jre配置java compiler level配...
分类:其他好文   时间:2015-01-17 17:47:08    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!