码迷,mamicode.com
首页 >  
搜索关键字:__unused    ( 162个结果
关于在Cocos2dx中注册触摸事件——Lua
关于在Cocos2dx中注册触摸事件,之前一直对此一知半解,这两天在看引擎的源码,趁此机会写下来...以下纯属个人理解,如有不对欢迎指正。。。在引擎的CCLayer类中声明了有四个方法:1 virtual bool onTouchBegan(Touch *touch, Event *unused_e...
分类:其他好文   时间:2014-10-13 19:56:51    阅读次数:185
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
check here.Basically the compiler will insert unused memory into a structure so that data members are optimally aligned for better performance.
分类:其他好文   时间:2014-09-19 05:31:24    阅读次数:270
Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004
移植文件系统时,我们可能会遇到这个问题: VFS: Mounted root (cramfs filesystem) readonly on device 31:3. Freeing unused kernel memory: 176K (c0616000 - c0642000) Kernel panic - not syncing: Attempted to kill init! exit...
分类:其他好文   时间:2014-08-28 00:55:38    阅读次数:936
i++和i--运算符优先级
1、问题背景 /** * 测试i++和i-- */ package com.you.model; /** * @author YouHaiDong * @date 2014-08-16 */ @SuppressWarnings("unused") public class AddReduce { static { int x = 10; } static int x...
分类:其他好文   时间:2014-08-16 15:07:20    阅读次数:164
【CentOS】CentOS如何以文本方式启动
1.CentOS的启动级别主要有,默认以leve5的方式启动#0-halt(DoNOTsetinitdefaulttothis)#1-Singleusermode#2-Multiuser,withoutNFS(Thesameas3,ifyoudonothavenetworking)#3-Fullmultiusermode#4-unused#5-X11#6-reboot(DoNOTsetinitdefaulttothis)#2.修改/etc/inittab文件将ini..
分类:其他好文   时间:2014-08-06 06:17:21    阅读次数:225
C++问题整理
1、如何消除"unused parameter"的警告:http://stackoverflow.com/questions/3599160/unused-parameter-warnings-in-c-code比较通用的做法就是(void) x;但是我更欣赏gcc上的__attribute__,可...
分类:编程语言   时间:2014-07-23 15:00:46    阅读次数:165
VB6之切换桌面
Desktop的API,用于切换或者系统桌面环境。扩展起来可以做一个锁屏程序或者多桌面程序。模块部分: 1 'desktop.bas 2 'too much struct and declare unused, shame~ 3 Public Declare Function GetThrea...
分类:其他好文   时间:2014-07-10 14:50:31    阅读次数:314
相克军_Oracle体系_随堂笔记005-Database buffer cache
本章主要阐述SGA中的Database buffer cache。Buffer cache {1.pin (读写瞬间的状态)2.clean3.dirty4.unused}--Database buffer cache概述:1.段、区、块的概念:create table t2 ( id int, .....
分类:数据库   时间:2014-07-09 14:49:28    阅读次数:219
开机启动服务:chkconfig命令详解
1、查看系统运行级别#cat/etc/inittab#Defaultrunlevel.Therunlevelsusedare:#0-halt(DoNOTsetinitdefaulttothis)#1-Singleusermode#2-Multiuser,withoutNFS(Thesameas3,ifyoudonothavenetworking)#3-Fullmultiusermode#4-unused#5-X11#6-reboot(DoNOTsetinitdefaulttothis)#id..
分类:其他好文   时间:2014-06-10 23:13:36    阅读次数:261
POJ 1715 Hexadecimal Numbers 组合数学
POJ 1715 Hexadecimal Numbers 组合数学 题目地址 题意:  一个十六进制,最多8位而且每一位都不能重复,求所有符合的数中第n大的数。注意不能有前导0。 分析:  可以发现,第i位的任何一个取值,都有P(unused, i - 1)个数字串,只要从高位向低位,从F到1找过去,看第n个是否在这个区间里面,如果没有的话就把那位置为0,然后找下一位就行了。...
分类:其他好文   时间:2014-06-04 21:14:02    阅读次数:272
162条   上一页 1 ... 14 15 16 17 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!