Skip to content

Commit 3f92974

Browse files
committed
C++参考手册中文版
1 parent ee8fdfc commit 3f92974

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

docs/cpp.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
## C++
22

3+
* [__LibCarla__](#LibCarla)
4+
* [__概念__](#idea)
5+
* [__参考__](#reference)
6+
37
在源代码的根目录下运行`doxygen`将在`Doxygen/html`目录下生成html文件,[文档主页](https://openhutb.github.io/carla_cpp/) 位于。
48

59
[所有类的继承关系](https://openhutb.github.io/carla_cpp/inherits.html)
610

711
!!! 注意
812
C++设计的哲学:Programmer needs to be trusted.(程序员应该被信任),是一种能够直接被编译成机器码的语言。
913

10-
### LibCarla
14+
## LibCarla <span id="LibCarla"></span>
1115

1216
### 客户端
1317

@@ -22,7 +26,7 @@ _socket.set_option(boost::asio::ip::tcp::no_delay(true));
2226
[C++客户端连接示例](cpp_client.md) 只支持在 Linux 上运行。
2327

2428

25-
## 概念
29+
## 概念 <span id="idea"></span>
2630

2731
### DDS
2832
DDS(Data Distribution Service),即 [数据分发服务](https://www.cnblogs.com/tomato-haha/p/17696510.html) ,是OMG(Object Management Group)对象管理组织发布的分布式通信规范,采用订阅发布模型,以中间件的形式提供通信服务,并提供QoS(Quality of Service)策略,保障数据实时、高效、灵活的分发。
@@ -42,9 +46,9 @@ DDS(Data Distribution Service),即 [数据分发服务](https://www.cnblog
4246

4347
解决:需要在工具栏中选中当前的运行的文件。
4448

45-
## 参考
49+
## 参考 <span id="reference"></span>
50+
* [C++ 教程](https://zh.cppreference.com/w/cpp) - [C++参考手册中文版](https://c-cpp.com/cpp)
4651
* [CMake 中文教程](https://cmake-doc.readthedocs.io/zh-cn/latest/guide/tutorial/index.html)
47-
* [vs2019 CMake 教程](https://learn.microsoft.com/zh-cn/cpp/build/cmake-projects-in-visual-studio?view=msvc-160) ,下载 CMake 3.26 的示例代码。
48-
* [C++ API文档](https://cplusplus.com/reference/string/stod/)
49-
* [C++ 教程](https://zh.cppreference.com/w/cpp) - 点击右上角可进行搜索,出来的英文界面可以将地址栏中的`en`改为`zh`即可浏览中文页面。
52+
* [vs2019 CMake 教程](https://learn.microsoft.com/zh-cn/cpp/build/cmake-projects-in-visual-studio?view=msvc-160) ,下载 CMake 3.26 的示例代码
53+
* [C++ API文档](https://cplusplus.com/reference/string/stod/)
5054
* [CMake 链接权限](https://zhuanlan.zhihu.com/p/663367171) ,区分PRIVATE、PUBLIC与INTERFACE。

0 commit comments

Comments
 (0)