Tekkaman

导航

 

2014年5月12日

摘要: 【Cycript】 Cycript allows developers to explore and modify running applications on either iOS or Mac OS X using a hybrid of Objective-C++ and JavaScri... 阅读全文
posted @ 2014-05-12 21:14 Tekkaman 阅读(391) 评论(0) 推荐(0)
 
摘要: 【令assignment操作符返回一个reference to *this】 关于赋值,可以把它们写成连锁形式: int x, y, z; x =y =z =15; II赋值连锁形式 上述连锁赋值被解析2为 x = (y = (z = 15)); 这里 15先被赋值给 Z,... 阅读全文
posted @ 2014-05-12 11:35 Tekkaman 阅读(453) 评论(0) 推荐(0)