技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2016-04-12 11:27:36
static的作用 在C语言中,static的字面意思很容易把我们导入歧途,其实它的作用有三条。(1)先来介绍它的第一条也是最重要的一条:隐藏。当我们同时编译多个文件时,所有未加static前缀的全局变量和函数都具有全局可见性。为理解这句话,我举例来说明。我们要同时编译两个源文件,.........【阅读全文】
发布时间:2016-04-07 18:26:30
https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.htmlThis guide describes the Foundation framework classes available for interacting with URLs and communicating with servers using standard Internet protocols. Together these classes.........【阅读全文】
发布时间:2016-04-07 18:25:42
https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/WorkingWithHTTPAndHTTPSRequests/WorkingWithHTTPAndHTTPSRequests.htmlOS X and iOS provide a number of general-purpose APIs for making HTTP and HTTPS requests. With these APIs, you can download.........【阅读全文】
发布时间:2016-04-07 16:37:36
http://www.cnblogs.com/bizhu/archive/2012/09/25/2701691.html关于结构体和C++类的内存地址问题今天终于有时间写点 东西了~ 太爽了 *_* 很多人都知道C++类是由结构体发展得来的,所以他们的成员变量(C语言的结构体只有成员变量)的内存分配机制是一样的。下面我们以类来说明问题,如果 类的问题通了.........【阅读全文】
发布时间:2016-04-07 16:36:33
http://blog.csdn.net/c504665913/article/details/7797859如果一个人自称为程序高手,却对内存一无所知,那么我可以告诉你,他一定在吹牛。用C或C++写程序,需要更多地关注内存,这不仅仅是因为内存的分配是否合理直接影响着程序的效率和性能,更为主要的是,当我们操作内存的时候一不小心就会出现问题,而且很多时候,.........【阅读全文】