C における一般的なコーディング標準の問題について詳しく説明します。具体的なコード例が必要です。
はじめに:
class MyClass { public: enum MyEnum { ENUM_VALUE_1, ENUM_VALUE_2 }; void myFunction() { int myVariable = 0; const int MY_CONSTANT = 10; } private: int myMemberVariable; };2. インデントと配置
void myFunction() { if (condition) { // do something } else { // do something else } }3. コードのコメント
/* * MyClass.h * * Description: This file contains the definition of MyClass. * Author: John Smith * Date: 2020-01-01 * * Modification history: * 2020-01-01: Initial version * ... */ class MyClass { public: void myFunction(); // This function does something };4. 関数とクラス定義の順序
class MyClass { public: MyClass(); ~MyClass(); void myFunction(); void myOtherFunction(); private: int myVariable; };5. コードのロジックと保守性
// Bad example void myFunction() { // a long piece of code... // ... // another long piece of code... // ... // more code... } // Good example void doSomething() { // a piece of code... } void doSomethingElse() { // another piece of code... } void myFunction() { doSomething(); doSomethingElse(); }
以上がC++ における一般的なコーディング標準の問題の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。