Few microcontrollers include a DAC. Although you can easily find an inexpensive DAC to control from your microcontroller, you can use unused periphera...
分类:
其他好文 时间:
2014-11-28 09:55:18
阅读次数:
229
1.后序遍历的非递归实现。(左右根)难点:后序遍历的非递归实现是三种遍历方式中最难的一种。因为在后序遍历中,要保证左孩子和右孩子都已被访问并且左孩子在右孩子前访问才能访问根结点,这就为流程的控制带来了难题。下面介绍两种思路。思路:有个关键的就是unUsed这个标识符。当unUsed=1时,表示该节点...
分类:
其他好文 时间:
2014-11-11 16:28:14
阅读次数:
171
LuceneUtils.java 1 import java.util.ArrayList; 2 import java.util.List; 3 4 @SuppressWarnings("unused") 5 public class LuceneUtils { 6 private St...
分类:
其他好文 时间:
2014-11-10 06:22:15
阅读次数:
179
内核时注意到有些函数会有添加__attribute__((unused)),在gcc手册中找到了有关的解释:unused:This attribute, attached to a function, means that the function is meant to be pos...
分类:
其他好文 时间:
2014-11-06 12:35:34
阅读次数:
110
create table tmp( name varchar(50), rowscount int, reserved varchar(50), data varchar(50), index_size varchar(50), unused varchar(...
分类:
数据库 时间:
2014-11-05 19:19:52
阅读次数:
197
bool sign2 = true;bool sign2 = true;void GameLayer::onTouchMoved(Touch *touch, Event *unused){ if(sign){ sign = false; ** if(sign2){ CCLOG("RUNN...
分类:
其他好文 时间:
2014-10-22 17:24:42
阅读次数:
183
一、前言 编码时我们总会发现如下变量未被使用的警告提示: 上述代码编译通过且可以运行,但每行前面的“感叹号”就严重阻碍了我们判断该行是否设置的断点了。这时我们可以在方法前添加@SuppressWarnings("unused")去除...
分类:
编程语言 时间:
2014-10-21 17:30:28
阅读次数:
221
【Reducing File Size】1、Unity strips out unused assets。 The amount of assets in your project folder doesnotinfluence the size of your built player. Uni....
分类:
其他好文 时间:
2014-10-20 23:15:51
阅读次数:
247
============问题描述============ 给大家分享一段启动模式的代码@TargetApi(Build.VERSION_CODES.GINGERBREAD) @SuppressWarnings("unused") @Override publicvoidonCreate(){ if(...
分类:
其他好文 时间:
2014-10-20 23:07:39
阅读次数:
270
RT最后有个路径/Users/zhangjianqiang/Library/Developer/Xcode/DerivedData/ModuleCache/ 进入到这个文件下把2N8K9AX48Y9IS文件夹删除即可;报错原因和为啥报错不知道~但是把这个文件夹删了就No problem!如果谁知道可...
分类:
其他好文 时间:
2014-10-20 22:37:12
阅读次数:
287