Useful C/C++ related websites.
Useful C/C++ related weblogs.
const
,表达“常量”语义的场景都使用 constexpr
;const
,volitile
, c++ 11之后新增了 &
, &&
, override
, final
, noexcept
,其中 &
与&&
称为引用限定符,限制调用该成员函数的this是左值还是右值,详见 c++ primer 5<random>
std::unique_lock<std::mutex>
, 与其它更改条件变量的是同一把锁。wait
, wait_for
, and wait_until
, 这些已包含通常的三个步骤:vector<bool>
既不是 vector, 也不存 bool, 更不是容器。C++98 起就对它进行按位存储优化空间,导致行为差异。std::ios::binary
可能达不到你想要的效果std::copy
性能可能比 memcpy
更好: https://stackoverflow.com/questions/4707012/is-it-better-to-use-stdmemcpy-or-stdcopy-in-terms-to-performance[函数对象参数] (操作符重载函数参数) mutable或exception声明 ->返回值类型 {函数体}
可以看到,Lambda主要分为五个部分,下面分别进行介绍。
[函数对象参数]
,标识一个Lambda的开始,这部分必须存在,不能省略。函数对象参数是传递给编译器自动生成的函数对象类的构造函数的。函数对象参数只能使用那些到定义Lambda为止时Lambda所在作用范围内可见的局部变量(包括Lambda所在类的this)。函数对象参数有以下形式:(操作符重载函数参数)
,标识重载的()操作符的参数,没有参数时,这部分可以省略。参数可以通过按值(如:(a,b))和按引用(如:(&a,&b))两种方式进行传递。mutable或exception声明
,这部分可以省略。按值传递函数对象参数时,加上mutable修饰符后,可以修改按值传递进来的拷贝(注意是能修改拷贝,而不是值本身)。exception声明用于指定函数抛出的异常,如抛出整数类型的异常,可以使用throw(int)。→返回值类型
,标识函数返回值的类型,当返回值为void,或者函数体中只有一处return的地方(此时编译器可以自动推断出返回值类型)时,这部分可以省略。{函数体}
,标识函数的实现,这部分不能省略,但函数体可以为空。auto my_func = [](int x, int y)->int{ return x+y;}; //或 std::function<int (int, int)> my_func = [](int x, int y)->int{ return x+y;}; int result = my_func(1, 2);//result == 3
而使用变量时, 可使用新增的std::function来声明类型:
#include <functional> int TestFun(int x, int y, std::function<int (int, int)> func) { return func(x,y); } int result = TestFun(1, 2, my_func);//result == 3 //std::function 也可以接受函数对象
或者直接使用模板
template<Class T> int TestFun(int x, int y, T func) { return T(x, y); } int result = TestFun(1, 2, my_func);// result == 3
&
表示左值引用,用&&
表示右值引用static unique_ptr<widget> widget::instance; static std::once_flag widget::create; widget& widget::get_instance() { std::call_once(create, [=]{ instance = make_unique<widget>(); }); return instance; }
如果不需要,则使用局部静态变量是最完美的方案:
widget& widget::get_instance() { static widget instance; return instance; }
.so
文件的导出符号: nm -D <name>.so
或 objdump -tT <name>.so
-rpath-link
options.-rpath
options. The difference between -rpath and -rpath-link is that directories specified by -rpath options are included in the executable and used at runtime, whereas the -rpath-link option is only effective at link time. Searching -rpath in this way is only supported by native linkers and cross linkers which have been configured with the --with-sysroot option.LD_RUN_PATH
.LD_LIBRARY_PATH
.DT_RUNPATH
or DT_RPATH
of a shared library are searched for shared libraries needed by it. The DT_RPATH
entries are ignored if DT_RUNPATH
entries exist./lib
and /usr/lib
./etc/ld.so.conf
exists, the list of directories found in that file.LD_LIBRARY_PATH
环境变量指定自己的lib目录。-fno-exceptions
-Werror=return-type
,这样没有返回值时编译期可以报error,好规避问题。gcc -Q --help=optimizers -O1