07 2014 档案

摘要:ScenesScenes in a storyboard represent content shown within one screen in your application. A scene involves a view controller and the views that make... 阅读全文
posted @ 2014-07-28 10:58 Master HaKu 阅读(299) 评论(0) 推荐(0) 编辑
摘要:// 动态申请内存, 指向一个未初始化的整型 int *pi = new int;// pi指向一个整型值,初始化为0 int *pi = new int();// value of i is 1024 int i(1024);// pi指向1024 int *pi = new int(1024);... 阅读全文
posted @ 2014-07-17 11:32 Master HaKu 阅读(937) 评论(0) 推荐(0) 编辑
摘要:1. dynamiccreateobject and initializationint *pi = new int; // pi points to an uninitialized intint *pi = new int(); // pi points to an int value in... 阅读全文
posted @ 2014-07-08 10:11 Master HaKu 阅读(157) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示