Translations:Development/19/zh: Difference between revisions
Created page with "以下是一些通用信息: *目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。 *<code>std::string</code>很少使用,字符数组加<code>system.h</code>方法才是常态。 *大多数输入输出代码、格式化和Print都是使用<code>system.h</code>提供的方法完成的。" |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
以下是一些 | 以下是一些基本信息: | ||
*目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。 | *目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。 | ||
*<code>std: | *<code>std::string</code>很少使用,字符数组加<code>system.h</code>方法才是常态。 | ||
*大多数输入输出代码、格式化和Print都是使用<code>system.h</code>提供的方法完成的。 | *大多数输入输出代码、格式化和Print都是使用<code>system.h</code>提供的方法完成的。 |
Latest revision as of 02:55, 30 July 2023
以下是一些基本信息:
- 目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。
std::string
很少使用,字符数组加system.h
方法才是常态。- 大多数输入输出代码、格式化和Print都是使用
system.h
提供的方法完成的。