自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (23)
  • 收藏
  • 关注

原创 [C++11]新特性试用

Auto在C++11之前,auto关键字用来指定存储期。在新标准中,它的功能变为类型推断。auto现在成了一个类型的占位符,通知编译器去根据初始化代码推断所声明变量的真实类型。各种作用域内声明变量都可以用到它。例如,名空间中,程序块中,或是for循环的初始化语句中。 auto i = 42; // i is an int auto p = new char; // p is a c

2015-07-31 08:35:38 650

原创 Git设置:

1. 创建git仓库2. $ 进入此项目所在文件夹$ git init$ git add .$ git commit -m “first commit”$ git remote add origin $ git push -u origin masterGit设置:git config --global user.name "Your Name Her

2015-07-31 08:32:50 551

原创 XCode创建C++工程

1. 创建命令行程序:2. 设置工程名和语言:3. 设置工程存储路径:4. xcode会自动为工程添加main函数:5. 编译执行:

2015-07-25 16:17:48 5603 1

原创 [C++11] thread

C++11标准库支持了thread,在MAC上试一试:#include #include void hello(void){ std::cout << "Hello concurrent world" << std::endl;}int main(void){ std::thread t(hello); t.join();}命令行编译(如果用xcode编译和其它oc工

2015-07-25 16:10:20 667

C++并发编程实战 源码 (C++ Concurrency in Action)

C++并发编程实战 源码 (C++ Concurrency in Action)

2015-08-04

Real-Time Communication with WebRTC 源码

Real-Time Communication with WebRTC 源码

2015-03-15

UICollectionView测试代码使用的Flickr类

UICollectionView测试代码使用的Flickr类

2015-03-14

UICollectionView示例程序图片资源

UICollectionView示例程序图片资源

2015-03-14

iOS Jenkins自动化集成测试示例

iOS Jenkins自动化集成测试示例

2015-03-09

iOS单元测试实例

iOS单元测试实例UnitTests.zip iOS_Calc, Calculator-iOS

2015-03-09

iOS 7 by tutorials part3

由于大小限制,分成3部分,这是第三部分。

2015-02-28

iOS 7 by tutorials part2

由于大小限制,分成3部分,这是第二部分。

2015-02-28

iOS 7 by Tutorials part1

由于大小限制,分成3部分,这是第一部分。

2015-02-28

Sketch 3.2.2 Mac 破解版

Sketch 3.2.2 Mac 破解版

2015-02-26

Mac gif录屏软件 LICEcap

Mac gif录屏软件 LICEcap,破解版

2015-02-23

RW-Objective-C-Cheatsheet-v-1-5

很好的Objective-C cheat sheet

2015-02-17

Mastering VMware vSphere 5.5

Mastering VMware vSphere 5.5

2015-02-09

Mastering VMware vSphere 5

Mastering VMware vSphere 5

2015-02-09

Cocoa Design Pattern

Cocoa Design Pattern

2015-02-06

Sketch 3.1.1 Mac 破解版

Sketch 3.1.1 Mac 破解版

2015-02-05

Using Swift with Cocoa and Objective-C完整中文CocoaChina精校版

Using Swift with Cocoa and Objective-C完整中文CocoaChina精校版

2015-02-05

iOS Programming- The Big Nerd Ranch Guide 4ed源码

iOS Programming- The Big Nerd Ranch Guide 4ed源码

2015-02-04

iOS apprentice 1 getting started v2.1

iOS apprentice 1 getting started v2.1

2015-02-02

iOS Programming(英文第四版)- The Big Nerd Ranch Guide 4ed

iOS Programming- The Big Nerd Ranch Guide 4ed.epub 英文第四版

2015-02-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除