码迷,mamicode.com
首页 >  
搜索关键字:init cannot execve    ( 32013个结果
flex 圆形布局
xmlns:s="library://ns.adobe.com/flex/spark"    xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="init(event)"> import mx.core.IVisualElement; import mx.core.IVisualElementContai...
分类:其他好文   时间:2014-07-22 23:05:55    阅读次数:338
ios开发笔记----exc_bad_access(code=1, address=0x789870)野指针错误,假死debug状态
错误原因: exc_bad_access(code=1, address=0x789870)野指针错误,主要的原因是,当某个对象被完全释放,也就是retainCount,引用计数为0后。再去通过该对象去调用其它的方法就会出现野指针错误。 例如: Person *jerry = [[Person alloc]init];  //  retainCount引用计数为1 [jerry eat];...
分类:移动开发   时间:2014-07-22 23:05:16    阅读次数:372
【梦幻连连连】源码分析(二)
转载请注明出处: GameLayer场景界面效果:     源码分析:   //GameLayer场景初始化,主要是初始化加载界面及背景音乐 bool GameLayer::init() {  float dt=0.0f;         if ( !CCLayerColor::initWithColor(ccc4(255, 255, 255, 255)))...
分类:其他好文   时间:2014-07-22 23:02:35    阅读次数:293
给文件简单加密
#include #include #include #include #include #define BUFF_LEN 1024using namespace std;long file_len(string file_name);void init(string file_name){}voi...
分类:其他好文   时间:2014-07-22 23:00:54    阅读次数:190
git 命令
git命令备查。从当前目录初始化$ git init初始化后,当前目录下创建一个.git目录,所有git需要多数据和资源都在这个目录中。克隆仓库$git clone http://****或者$git clone git://****要确定哪些文件当前处于什么状态,可以用 git status 命令...
分类:其他好文   时间:2014-05-01 22:34:05    阅读次数:376
IOS中Block的循环引用
@interface DemoObj()@property (nonatomic, strong) NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self = [super init]; ...
分类:移动开发   时间:2014-05-01 20:28:37    阅读次数:917
父子进程关系
1)父进程先于子进程终止:此种情况就是我们前面所用的孤儿进程。当父进程先退出时,系统会让init进程接管子进程 。2)子进程先于父进程终止,而父进程又没有调用wait或waitpid函数此种情况子进程进入僵死状态,并且会一直保持下去直到系统重启。子进程处于僵死状态时,内核只保存进程的一些必要信息以备...
分类:其他好文   时间:2014-05-01 19:14:22    阅读次数:283
libpcre.so.1 cannot be found
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory...
分类:其他好文   时间:2014-04-30 22:43:38    阅读次数:346
【梦幻连连连】源码分析(一)
进入游戏连连第一个场景,如下:   初始化该场景精灵所需的信息、背景/音效及图层UI bool HelloWorld::init() {     //////////////////////////////     // 1. super initfirst     if (!CCLayer::init() )     {         return false;...
分类:其他好文   时间:2014-04-30 22:34:40    阅读次数:226
dispatch_once的实现分析
dispatch_once的实现分析 dispatch_once可以保证代码被执行一次 +(NSDateFormatter*)getDBDateFormat { static NSDateFormatter* format; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ format = [[LKDateFormatter alloc]init]; format.dateF...
分类:其他好文   时间:2014-04-30 22:12:40    阅读次数:336
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!