http://www.cnblogs.com/ligongzi/archive/2012/08/24/2654448.html看了三天结构体,是时候总结一下了。 关于结构体的声明: struct Student{ char name[20]; char sex; int age...
分类:
其他好文 时间:
2015-01-09 17:13:38
阅读次数:
145
//方法一在跳转的事件里面写 UIViewController *viewController = [[UIViewControlleralloc] init]; viewController.hidesBottomBarWhenPushed = YES; [self.navigationCont....
分类:
其他好文 时间:
2015-01-09 17:12:49
阅读次数:
186
在研究这个模式之前,我们要尽可能的知道面向对象编程的概念,充分了解"对象"的在程序中的含义。"对象" 是一个有自己的属性、方法的整体。是一个"类"的实例化的个体。我们可以把"类"看成一个概念, 而对象就是这个"概念"的具体化的实例。比如说:”人“就是一个概念,我们都是人,都属于”人“类,我们每一个个...
分类:
其他好文 时间:
2015-01-09 17:09:49
阅读次数:
191
PointsPixelsEmsPercent6pt8px0.5em50%7pt9px0.55em55%7.5pt10px0.625em62.5%8pt11px0.7em70%9pt12px0.75em75%10pt13px0.8em80%10.5pt14px0.875em87.5%11pt15px0...
分类:
其他好文 时间:
2015-01-09 17:11:38
阅读次数:
636
mscorlib,4.0.0.0,C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dllSharpDevelop,5.1.0.4936,E:\C#开发工具\vsDevelop_Source\bin\SharpDevelop.exeSyst...
分类:
其他好文 时间:
2015-01-09 17:12:07
阅读次数:
541
lua文件刷新function require_ex( _mname ) if _mname == "" then return end if package.loaded[_mname] then end package.loaded[_mname] = nil ...
分类:
其他好文 时间:
2015-01-09 17:10:24
阅读次数:
156
前段时间,有同事和会员反馈使用Chrome访问淘宝首页会出现画面闪动的现象,但是我在Mac和Win下面的Chrome都无法重现这个问题,后来重装了一遍Win7下的Chrome Beta版本,终于重现了这个问题,正好研究解决下…问题主要集中于淘宝首页吊顶以及左侧服务栏处,鼠标移过整个页面会闪动一次,R...
分类:
其他好文 时间:
2015-01-09 17:08:52
阅读次数:
185
下面是用VirtualBox安装Debian6的方法和步骤l 新建一个文件夹,用于存放虚拟硬盘,如Debianl 打开VirtualBox,点击新建l 输入虚拟机名称,Debian_6l 给虚拟机分配内存,这里设置为1G选择不添加虚拟硬盘,点击创建,点击继续。接下来我们可以手动添加几块虚拟硬盘l 选...
分类:
其他好文 时间:
2015-01-09 17:10:21
阅读次数:
464
安装第二个tomcat完成后,到安装目录下的conf子目录中打开server.xml文件,查找以下三处:(1)修改http范围端口(默认为8080端口)(大概在86行左右)将8080修改为第一个tomcat不在使用的端口号。此处所设的端口号即是以后访问web时所用的端口号(2)修改shutdown端...
分类:
其他好文 时间:
2015-01-09 17:08:06
阅读次数:
80
NSString *tempA = @"123"; NSString *tempB = @"456";1,字符串拼接NSString *newString = [NSString stringWithFormat:@"%@%@",tempA,tempB];2,字符转intint intString....
分类:
其他好文 时间:
2015-01-09 17:07:12
阅读次数:
86
1.只取函数名1 import sys2 def getFunctionName():3 return sys._getframe(1).f_code.co_name4 5 def run():6 print 'functionname:', getFunctionName()7 8...
分类:
其他好文 时间:
2015-01-09 17:06:52
阅读次数:
130
Police raided his home in August and found more than 100g of marijuana. He faced a maximum sentence of three years.His arrest came amid a drug use cra...
分类:
其他好文 时间:
2015-01-09 17:05:54
阅读次数:
166
reg [3:0]i; always @ ( posedge CLOCK or negedge RESET ) if( !RESET ) begin i <= 4'd0; ...
分类:
其他好文 时间:
2015-01-09 17:04:34
阅读次数:
128
//利用正则表达式验证邮箱的合法性-(BOOL)isValidateEmail:(NSString *)email { NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate...
分类:
其他好文 时间:
2015-01-09 17:05:44
阅读次数:
137
链表基本操作的实现 1 #include 2 #include 3 #define LEN sizeof(struct student) 4 5 /*----------------数据定义----------------------*/ 6 7 //定义一个学生信息的结构体...
分类:
其他好文 时间:
2015-01-09 17:03:12
阅读次数:
203
因为避免了程序员在不同语言下转换思维的时间,这一过程是很费时的,而且也很容易一不小心就产生Error刚刚就犯了一个让人无语的错误...如下的是Python中连接数据库host = '192.168.1.136'port = 3306user = 'user'passwd = 'password'db...
分类:
其他好文 时间:
2015-01-09 17:02:47
阅读次数:
135
最近在整理前端框架的事儿,所以写了很多插件的方法。在这里分享一下初写插件的方法: 1 $.fn.extend({ 2 clicks:function(options){ 3 var duf = { 4 a:1, 5 ...
分类:
其他好文 时间:
2015-01-09 17:04:05
阅读次数:
113