Translations:Development/19/zh: Difference between revisions

From DDraceNetwork
(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::string</code>很少使用,字符数组加<code>system.h</code>方法才是常态。
*<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

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development)
Here are some general bits of information:
*Currently, the source code is compiled with the C++17 standard, but you will see that many parts of the code are more C-like since only mostly new code uses C++17 stuff.
*<code>std::string</code> is rarely used, char arrays plus using <code>system.h</code> methods for handling them are the norm.
*Most I/O code, formatting and printing is done using <code>system.h</code> provided methods.

以下是一些基本信息:

  • 目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。
  • std::string很少使用,字符数组加system.h方法才是常态。
  • 大多数输入输出代码、格式化和Print都是使用system.h提供的方法完成的。