这个列表收集了 C++ 语言的一些晦涩(Obscure)特性,是我转载于此处。C++非常庞大,我总是能学到一些新知识。即使你对C++已了如指掌,也希望你能从列表中学到一些东西。下面列举的特性,根据晦涩程度由浅入深进行排序。
方括号的真正含义用来访问数组元素的ptr[3]其实只是*(ptr + 3)的缩写,与用*(3 + ptr)是等价的,因此反过来与3[ptr]也是等价的,使用3[ptr]是完全有效的代码。 最烦人的解析“most vexing parse”这个词是由Scott Meyers提出来的,因为C++语法声明的二义性会导致有悖常理的行为: 1 01 // 这个解释正确? 2 02 // 1) 类型std::string的变量会通过std::string()实例化吗? 3 03 // 2) 一个函数声明,返回一个std::string值并有一个函数指针参数, 4 04 // 该函数也返回一个std::string但没有参数? 5 05 std::string foo(std::string()); 6 06 7 07 // 还是这个正确? 8 08 // 1)类型int变量会通过int(x)实例化吗? 9 09 // 2)一个函数声明,返回一个int值并有一个参数, 10 10 // 该参数是一个名为x的int型变量吗? 11 11 int bar(int(x)); 两种情形下C++标准要求的是第二种解释,即使第一种解释看起来更直观。程序员可以通过包围括号中变量的初始值来消除歧义:
1 //加括号消除歧义 2 std::string foo((std::string())); 3 int bar((int(x))); 译者注:这一点我觉得有点迷惑,下面是我在g++下的测试用例: 01 #include <iostream> 02 #include <string> 03 using namespace std; 04 05 int bar(int(x)); // 等价于int bar(int x) 06 07 string foo(string()); // 等价于string foo(string (*)()) 08 09 string test() { 10 return "test"; 11 } 12 13 int main() 14 { 15 cout << bar(2) << endl; // 输出2 16 cout << foo(test); // 输出test 17 return 0; 18 } 19 20int bar(int(x)) { 21 return x; 22 } 23 24string foo(string (*fun)()) { 25 return (*fun)(); 26 } 替代运算标记符标记符and, and_eq, bitand, bitor, compl, not, not_eq, or, or_eq, xor, xor_eq, <%, %>, <: 和 :>都可以用来代替我们常用的&&, &=, &, |, ~, !, !=, ||, |=, ^, ^=, {, }, [ 和 ]。在键盘上缺乏必要的符号时你可以使用这些运算标记符来代替。 重定义关键字通过预处理器重定义关键字从技术上讲会引起错误,但实际上是允许这样做的。因此你可以使用类似#define true false 或 #define else来搞点恶作剧。但是,也有它合法有用的时候,例如,如果你正在使用一个很大的库而且需要绕过C++访问保护机制,除了给库打补丁的方法外,你也可以在包含该库头文件之前关闭访问保护来解决,但要记得在包含库头文件之后一定要打开保护机制! 1 #define class struct 2 #define private public 3 #define protected public 4 5 #include "library.h" 6 7 #undef class 8 #undef private 9 #undef protected 译者注:在C++中,Name Mangling 是为了支持重载而加入的一项技术。编译器将目标源文件中的名字进行调整,这样在目标文件符号表中和连接过程中使用的名字和编译目标文件的源程序中的名字不一样,从而实现重载。 Placement newPlacement new是new操作符的一个替代语法,作用在已分配的对象上,该对象已有正确的大小和正确的赋值,这包括建立虚函数表和调用构造函数。 译者注:placement new就是在用户指定的内存位置上构建新的对象,这个构建过程不需要额外分配内存,只需要调用对象的构造函数即可。placement new实际上是把原本new做的两步工作分开来:第一步自己分配内存,第二步调用类的构造函数在自己已分配的内存上构建新的对象。placement new的好处:1)在已分配好的内存上进行对象的构建,构建速度快。2)已分配好的内存可以反复利用,有效的避免内存碎片问题。 01 #include <iostream> 02 using namespace std; 03 04 struct Test { 05 int data; 06 Test() { cout << "Test::Test()" << endl; } 07 ~Test() { cout << "Test::~Test()" << endl; } 08 }; 09 10 int main() { 11 // Must allocate our own memory 12 Test *ptr = (Test *)malloc(sizeof(Test)); 13 14 // Use placement new 15 new (ptr) Test; 16 17 // Must call the destructor ourselves 18 ptr->~Test(); 19 20 // Must release the memory ourselves 21 free(ptr); 22 23 return 0; 24 } 在声明变量的同时进行分支C++包含一个语法缩写,能在声明变量的同时进行分支。看起来既像单个的变量声明也可以有if或while这样的分支条件。 01struct Event { virtual ~Event() {} }; 02struct MouseEvent : Event { int x, y; }; 03struct KeyboardEvent : Event { int key; }; 04 05void log(Event *event) { 06 if (MouseEvent *mouse = dynamic_cast<MouseEvent *>(event)) 07 std::cout << "MouseEvent " << mouse->x << " " << mouse->y << std::endl; 08 09 else if (KeyboardEvent *keyboard = dynamic_cast<KeyboardEvent *>(event)) 10 std::cout << "KeyboardEvent " << keyboard->key << std::endl; 11 12 else 13 std::cout << "Event" << std::endl; 14 } 成员函数的引用修饰符C++11允许成员函数在对象的值类型上进行重载,this指针会将该对象作为一个引用修饰符。引用修饰符会放在cv限定词(译者注:CV限定词有三种:const限定符、volatile限定符和const-volatile限定符)相同的位置并依据this对象是左值还是右值影响重载解析: 01 #include <iostream> 02 03 struct Foo { 04 void foo() & { std::cout << "lvalue" << std::endl; } 05 void foo() && { std::cout << "rvalue" << std::endl; } 06 }; 07 08 int main() { 09 Foo foo; 10 foo.foo(); // Prints "lvalue" 11 Foo().foo(); // Prints "rvalue" 12 return 0; 13 } 转向完整的模板元编程C++模板是为了实现编译时元编程,也就是该程序能生成其它的程序。设计模板系统的初衷是进行简单的类型替换,但是在C++标准化过程中突然发现模板实际上功能十分强大,足以执行任意计算,虽然很笨拙很低效,但通过模板特化的确可以完成一些计算: 01 // Recursive template for general case 02 template <int N> 03 struct factorial { 04 enum { value = N * factorial<N - 1>::value }; 05 }; 06 07 // Template specialization for base case 08 template <> 09 struct factorial<0> { 10 enum { value = 1 }; 11 }; 12 13 enum { result = factorial<5>::value }; // 5 * 4 * 3 * 2 * 1 == 120 01 // Compile-time list of integers 02 template <int D, typename N> 03 struct node { 04 enum { data = D }; 05 typedef N next; 06 }; 07 struct end {}; 08 09 // Compile-time sum function 10 template <typename L> 11 struct sum { 12 enum { value = L::data + sum<typename L::next>::value }; 13 }; 14 template <> 15 struct sum<end> { 16 enum { value = 0 }; 17 }; 18 19 // Data structures are embedded in types 20 typedef node<1, node<2, node<3, end> > > list123; 21enum { total = sum<list123>::value }; // 1 + 2 + 3 == 6 指向成员的指针操作符 指向成员的指针操作符可以让你在一个类的任何实例上描述指向某个成员的指针。有两种pointer-to-member操作符,取值操作符*和指针操作符->: 01 #include <iostream> 02 using namespace std; 03 04 struct Test { 05 int num; 06 void func() {} 07 }; 08 09 // Notice the extra "Test::" in the pointer type 10 int Test::*ptr_num = &Test::num; 11 void (Test::*ptr_func)() = &Test::func; 12 13 int main() { 14 Test t; 15 Test *pt = new Test; 16 17 // Call the stored member function 18 (t.*ptr_func)(); 19 (pt->*ptr_func)(); 20 21 // Set the variable in the stored member slot 22 t.*ptr_num = 1; 23 pt->*ptr_num = 2; 24 25 delete pt; 26 return 0; 27 } 该特征实际上十分有用,尤其在写库的时候。例如,Boost::Python, 一个用来将C++绑定到Python对象的库,就使用成员指针操作符,在包装对象时很容易的指向成员。 01 #include <iostream> 02 #include <boost/python.hpp> 03 using namespace boost::python; 04 05 struct World { 06 std::string msg; 07 void greet() { std::cout << msg << std::endl; } 08 }; 09 10 BOOST_PYTHON_MODULE(hello) { 11 class_<World>("World") 12 .def_readwrite("msg", &World::msg) 13 .def("greet", &World::greet); 14 } 记住使用成员函数指针与普通函数指针是不同的。在成员函数指针和普通函数指针之间casting是无效的。例如,Microsoft编译器里的成员函数使用了一个称为thiscall的优化调用约定,thiscall将this参数放到ecx寄存器里,而普通函数的调用约定却是在栈上解析所有的参数。 而且,成员函数指针可能比普通指针大四倍左右,编译器需要存储函数体的地址,到正确父地址(多个继承)的偏移,虚函数表(虚继承)中另一个偏移的索引,甚至在对象自身内部的虚函数表的偏移也需要存储(为了前向声明类型)。 01 #include <iostream> 02 03 struct A {}; 04 struct B : virtual A {}; 05 struct C {}; 06 struct D : A, C {}; 07 struct E; 08 09 int main() { 10 std::cout << sizeof(void (A::*)()) << std::endl; 11 std::cout << sizeof(void (B::*)()) << std::endl; 12 std::cout << sizeof(void (D::*)()) << std::endl; 13 std::cout << sizeof(void (E::*)()) << std::endl; 14 return 0; 15 } 16 17 // 32-bit Visual C++ 2008: A = 4, B = 8, D = 12, E = 16 18 // 32-bit GCC 4.2.1: A = 8, B = 8, D = 8, E = 8 19 // 32-bit Digital Mars C++: A = 4, B = 4, D = 4, E = 4 在Digital Mars编译器里所有的成员函数都是相同的大小,这是源于这样一个聪明的设计:生成“thunk”函数来运用右偏移而不是存储指针自身内部的偏移。 静态实例方法 C++中可以通过实例调用静态方法也可以通过类直接调用。这可以使你不需要更新任何调用点就可以将实例方法修改为静态方法。 1 struct Foo { 2 static void foo() {} 3 }; 4 5 // These are equivalent 6 Foo::foo(); 7 Foo().foo(); 重载++和– C++的设计中自定义操作符的函数名称就是操作符本身,这在大部分情况下都工作的很好。例如,一元操作符的-和二元操作符的-(取反和相减)可以通过参数个数来区分。但这对于一元递增和递减操作符却不奏效,因为它们的特征似乎完全相同。C++语言有一个很笨拙的技巧来解决这个问题:后缀++和–操作符必须有一个空的int参数作为标记让编译器知道要进行后缀操作(是的,只有int类型有效)。 1 struct Number { 2 Number &operator ++ (); // Generate a prefix ++ operator 3 Number operator ++ (int); // Generate a postfix ++ operator 4 }; 操作符重载和检查顺序 重载,(逗号),||或者&&操作符会引起混乱,因为它打破了正常的检查规则。通常情况下,逗号操作符在整个左边检查完毕才开始检查右边,|| 和 &&操作符有短路行为:仅在必要时才会去检查右边。无论如何,操作符的重载版本仅仅是函数调用且函数调用以未指定的顺序检查它们的参数。 重载这些操作符只是一种滥用C++语法的方式。作为一个实例,下面我给出一个Python形式的无括号版打印语句的C++实现: 01 #include <iostream> 02 03 namespace __hidden__ { 04 struct print { 05 bool space; 06 print() : space(false) {} 07 ~print() { std::cout << std::endl; } 08 09 template <typename T> 10 print &operator , (const T &t) { 11 if (space) std::cout << ' '; 12 else space = true; 13 std::cout << t; 14 return *this; 15 } 16 }; 17 } 18 19 #define print __hidden__::print(), 20 21 int main() { 22 int a = 1, b = 2; 23 print "this is a test"; 24 print "the sum of", a, "and", b, "is", a + b; 25 return 0; 26 }
函数作为模板参数 众所周知,模板参数可以是特定的整数也可以是特定的函数。这使得编译器在实例化模板代码时内联调用特定的函数以获得更高效的执行。下面的例子里,函数memoize的模板参数也是一个函数且只有新的参数值才通过函数调用(旧的参数值可以通过cache获得): 01 #include <map> 02 03 template <int (*f)(int)> 04 int memoize(int x) { 05 static std::map<int, int> cache; 06 std::map<int, int>::iterator y = cache.find(x); 07 if (y != cache.end()) return y->second; 08 return cache[x] = f(x); 09 } 10 11 int fib(int n) { 12 if (n < 2) return n; 13 return memoize<fib>(n - 1) + memoize<fib>(n - 2); 14 } 模板的参数也是模板 模板参数实际上自身的参数也可以是模板,这可以让你在实例化一个模板时可以不用模板参数就能够传递模板类型。看下面的代码: 01 template <typename T> 02 struct Cache { ... }; 03 04 template <typename T> 05 struct NetworkStore { ... }; 06 07 template <typename T> 08 struct MemoryStore { ... }; 09 10 template <typename Store, typename T> 11 struct CachedStore { 12 Store store; 13 Cache<T> cache; 14 }; 15 16 CachedStore<NetworkStore<int>, int> a; 17 CachedStore<MemoryStore<int>, int> b; CachedStore的cache存储的数据类型与store的类型相同。然而我们在实例化一个CachedStore必须重复写数据类型(上面的代码是int型),store本身要写,CachedStore也要写,关键是我们这并不能保证两者的数据类型是一致的。我们真的只想要确定数据类型一次即可,所以我们可以强制其不变,但是没有类型参数的列表会引起编译出错: 1 // 下面编译通不过,因为NetworkStore和MemoryStore缺失类型参数 2 CachedStore<NetworkStore, int> c; 3 CachedStore<MemoryStore, int> d; 模板的模板参数可以让我们获得想要的语法。注意你必须使用class关键字作为模板参数(他们自身的参数也是模板) 1 template <template <typename> class Store, typename T> 2 struct CachedStore2 { 3 Store<T> store; 4 Cache<T> cache; 5 }; 6 7 CachedStore2<NetworkStore, int> e; 8 CachedStore2<MemoryStore, int> f; try块作为函数 函数的try块会在检查构造函数的初始化列表时捕获抛出的异常。你不能在初始化列表的周围加上try-catch块,因为其只能出现在函数体外。为了解决这个问题,C++允许try-catch块也可作为函数体: 01 int f() { throw 0; } 02 03 // 这里没有办法捕获由f()抛出的异常 04 struct A { 05 int a; 06 A::A() : a(f()) {} 07 }; 08 09 // 如果try-catch块被用作函数体并且初始化列表移至try关键字之后的话, 10 // 那么由f()抛出的异常就可以捕获到 11 struct B { 12 int b; 13 B::B() try : b(f()) { 14 } catch(int e) { 15 } 16 }; 奇怪的是,这种语法不仅仅局限于构造函数,也可用于其他的所有函数定义。 |