CPlusPlusThings
CPlusPlusThings copied to clipboard
C++那些事
markdown语法中的 ~~删除线~~ 和 **加粗**连用时不能在github中正确预览(~~**奇怪的是在这里可以正确显示**~~),使用html标签替换了basic_content/const/README.md中的一处使用。
fix #311
In this updated code, I have removed the throw(int, char, double) specification, and catch exceptions by their actual types in the catch blocks. This is the preferred way of handling...
condition3.cpp line5注释贴多了吧,const int *const ptr指向const int没有问题吧
basic_content/macro/BUILD ~~~shell # please run `bazel run basic_content/sig_examp:sig_examp` ~~~ 修改为 ~~~shell # please run `bazel run basic_content/macro:sig_examp` ~~~
https://github.com/Light-City/CPlusPlusThings/blob/master/practical_exercises/10_day_practice/day9/exception/5.cpp ``` void handler(int n) throw(int, char, double){/*...*/} ``` 这种做法在高版本C++中不被允许
运行环境:Ubuntu, 问题:docker pull项目后,运行`docker run -idt -v /Users/light/CPlusPlusThings:/home/admin/CPlusPlusThings --cap-add sys_ptrace --ulimit core=-1 --privileged --name cplusplusthings cplusplusthings:latest` 会提示错误信息:Unable to find image 'cplusplusthings:latest' locally docker: Error response from daemon: pull access denied for...