码迷,mamicode.com
首页 >  
搜索关键字:effective    ( 1955个结果
c++赋值构造函数为什么返回引用类型?
0. 前言 c++默认赋值构造函数的返回值是引用类型,c++赋值运算符=的本意是返回左值的引用,我们重写赋值构造函数的时候,返回值是否应该设为引用类型呢? 按照《Effective C++》中第10条,最好是设为引用类型。 本文,通过实验来表述返回值是否为引用类型的区别。1. 内置类型 int...
分类:编程语言   时间:2014-07-22 23:08:15    阅读次数:400
Effective Java 68 Prefer executors and tasks to threads
The general mechanism for executing tasks is the executor service. If you think in terms of tasks and let an executor service execute them for you, yo...
分类:编程语言   时间:2014-05-05 23:32:44    阅读次数:389
private 继承 真的没用吗??
private继承,在看到effective C++之前,我发现在我之前的代码里面,没有用到这个机制,但是认真回想起还是有一些影子。 大多数人认为private继承是没有用的,其实不然,在某些情况下,它也会带给你一些惊喜。 好,言归正传,之前已经数次提到过 public继承表示的是  “is   a ”的关系,也就是说每一个derived对象D同时也是base对象,任何在 base对...
分类:其他好文   时间:2014-05-02 18:36:10    阅读次数:376
Effective Java 66 Synchronize access to shared mutable data
When multiple threads share mutable data, each thread that reads or writes the data must perform synchronization. Without synchronization, there is no...
分类:数据库   时间:2014-05-01 09:14:25    阅读次数:506
IOS经典书籍推荐
基础篇 objective-c基础教程 iphone 开发秘籍  进阶篇        iOS 6编程实战          Objective-C 高级编程:iOS与OS X多线程和内存管理 Effective Objective-C 2.0:编写高质量iOS与OS X代码的52个有效方法...
分类:移动开发   时间:2014-04-29 13:25:21    阅读次数:402
1955条   上一页 1 ... 194 195 196
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!