构造方法:用来初始化对象的;首先分解一下创建对象的过程:Person *p = [Person
new]; // new方法是alloc 和 init 这两个方法的组合;完整的创建可用对象的过程: 1:分配存储空间; 就是调用的 +alloc
方法,这个方法是类方法,返回的是一个分配好存储空间的 ....
分类:
其他好文 时间:
2014-05-12 04:47:22
阅读次数:
237
我们在Windows下使用Visual Studio
2012开发游戏的时候,使用标签中包含中文时候会出现乱码或无法显示,如下图所示:而应该显示的中文是如下图所示:HelloWorldScene.cpp中init函数如下:[html]view
plaincopyboolHelloWorld::ini...
分类:
其他好文 时间:
2014-05-12 01:22:18
阅读次数:
438
异常:The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
这是因为页面中用了struts标签的原因。
解决方法:
1。下载jstl1.1 解压后把lib文件夹下的jstl....
分类:
编程语言 时间:
2014-05-11 21:44:48
阅读次数:
364
之前说过
sencha phonegap init com.pushsoft.myapp MyApp
之后打包的程序安装包apk的名字是“MyApp.apk”,显示在手机桌面上的程序名称(图标下面的文字)也是"MyApp"
如果要换成其他名字,修改 MyApp\config.xml 文件,把顶部"MyApp"中间MyApp的改成需要的名字。
注意如果xml内容有中文,要改成ut...
分类:
移动开发 时间:
2014-05-11 18:26:47
阅读次数:
460
// 创建NSDate对象 NSDate *nowDate1 = [NSDate date];
NSDate *nowDate2 = [[NSDate alloc]init]; NSDate *nowDate3 =
[[NSDatealloc]initWithTimeInte...
分类:
其他好文 时间:
2014-05-11 00:49:23
阅读次数:
266
Hello
WorldLinux设备驱动的第一个例子。一.源程序(hello.c)#include#includeMODULE_LICENSE("DualBSD/GPL");staticinthello_init(void){printk(KERN_ALERT"Hello,world/n");ret...
分类:
系统相关 时间:
2014-05-10 07:40:47
阅读次数:
408
现在又很多工具能将文字转换成图片,这样就可以发送长微博,其实python实现这很容易的,主要就是用到了pygame模块
import os
import pygame
from pygame.locals import *
pygame.init()
text = u"这是一段测试文本,test 123。"
font = pygame.font.SysFont('SimHei', 14)
...
分类:
编程语言 时间:
2014-05-10 04:25:52
阅读次数:
620
在执行/etc/init.d/ndbd--initial出现下列错误[root@ndbd1~]#/etc/init.d/ndbd--initialUnabletoconnectwithconnectstring:nodeid=0,localhost:1186Retryingevery5seconds.Attemptsleft:121110987654321,failed.解决办法1.查看/etc/my.cnf文件配置[root@ndbd1~]#cat/etc/my.cnf..
分类:
数据库 时间:
2014-05-10 04:07:58
阅读次数:
1778
整个Android系统的启动分为Linux kernel的启动和Android系统的启动。Linux kernel启动起来后,然后就运行第一个用户程序,在Android中,就是init程序,上一博文已经介绍。
Init进程始终是第一个进程。Init进程的对应的代码的main函数在目录system/core/init/init.c,先来总体看一下这个main函数。
int main(int...
分类:
移动开发 时间:
2014-05-09 22:24:03
阅读次数:
536
phpize可以往php种追加新的模块
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script....
分类:
Web程序 时间:
2014-05-09 21:06:27
阅读次数:
375