代码注释的规范与方法(教你写好代码注释)

在开发一个软件或者一个项目时,我们需要不断地修改和完善代码。为了能够更好地管理和维护代码,代码注释变得尤为重要。本文将从多个方面详细阐述代码注释规范的要求,以及如何进行合理的代码注释。

一、代码注释规范要求有哪些?

1、注释应该清晰易懂,不需要过多的技术术语,尤其是对于那些不是技术方面的人员。注释应该用简单明了的语言来描述代码的作用和逻辑。

// incorrect
/*
* This function calculates the average of two numbers.
* It takes two arguments: num1 and num2.
* Returns the average of num1 and num2.
*/
function calculateAvg(num1, num2) {
  return (num1 + num2) / 2;
}

// correct
// Calculates the average of two numbers
function getAverage(num1, num2) {
  return (num1 + num2) / 2;
}

2、注释应该放在可以一眼看到的地方,特别是对于重要和复杂的代码块。

// incorrect
function calculateSum(num1, num2) {
  let sum = 0;
  for(let i = num1; i <= num2; i++)
    sum += i;

  return sum;
}
/*
* This function calculates the sum of two numbers.
* It takes two arguments: num1 and num2.
* Returns the sum of the numbers between num1 and num2 (inclusive).
*/

// correct
// Calculates the sum of numbers between two numbers (inclusive)
function calculateSum(num1, num2) {
  let sum = 0;
  for(let i = num1; i <= num2; i++)
    sum += i;

  return sum;
}

3、注释应该被保持更新,保证代码和注释的一致性。

// incorrect
// This function creates a new user
function createUser(firstName, lastName) {
  // generate random id for the user
  let id = generateRandomId();
  return {
    firstName,
    lastName,
    id
  }
}

// correct
// Creates a new user and assigns a random id to them
function createUser(firstName, lastName) {
  let id = generateRandomId(); // generates random id
  return {
    firstName, // user's first name
    lastName, // user's last name
    id // unique id assigned to the user
  }
}

二、Vue代码注释规范

对于Vue项目的代码注释,还需要特别注意以下几点:

1、对于组件的注释,应该用符合HTML规范的注释:“<!– … –>”。

<!--incorrect-->
// Comment for the component
<div>
// code here
</div>

<!--correct-->
<!-- Comment for the component -->
<div>
// code here
</div>

2、对于Vue选项,应该在该选项上方进行注释说明。

//incorrect
export default {
  data() {
    return {
      foo: "bar"
    }
  },
  computed: {
    // Compute something
    computeSomething() {
      return this.foo + "baz";
    }
  }
}

// correct
export default {
  // Component data
  data() {
    return {
      foo: "bar"
    }
  },
  // Computed properties
  computed: {
    // Compute something that involves foo
    computeSomething() {
      return this.foo + "baz";
    }
  }
}

三、C代码注释规范

对于C语言项目的代码注释,应该特别注意以下几点:

1、对于多行注释,应该以“/*”开始,以“*/”结束。

/*incorrect*/
Function to calculate factorial of a number.
int calculateFactorial(int num) {
  if (num == 0) {
    return 1;
  }
  else {
    return num * calculateFactorial(num - 1);
  }
}

/*correct*/
/**
 * Function to calculate factorial of a number.
 * @param num The input number
 * @return The result of the factorial calculation
 */
int calculateFactorial(int num) {
  if (num == 0) {
    return 1;
  }
  else {
    return num * calculateFactorial(num - 1);
  }
}

2、对于单行注释,可以使用“//”。

//incorrect
int x = 10; /* initialize x with 10 */

//correct
int x = 10; // initialize x with 10

四、C++代码注释规范

对于C++语言项目的代码注释,同样需要遵守C语言代码注释规范。此外,还应该注意如下两点:

1、对于类的注释,应该在类定义的前面。

//incorrect
class MyClass {
public:
  void myMethod();
};
/** Comment for the class **/
class MyClass {
public:
  void myMethod();
};

//correct
/**
 * Comment for the class
 **/
class MyClass {
public:
  void myMethod();
};

2、对于函数的注释,应该在函数声明上方。

//incorrect
void myFunction() {
  /* function implementation */
}
/** Comment for the function **/
void myFunction();

//correct
/**
 * Comment for the function
 **/
void myFunction() {
  /* function implementation */
}

五、前端代码注释规范

对于前端代码的注释,需要特别关注以下两点:

1、对于HTML代码,应该使用注释:“<!– … –>”。

<!--incorrect-->
// Comment for the code
<div>
  <h1>Hello World</h1>
</div>

<!--correct-->
<!-- Comment for the code -->
<div>
  <h1>Hello World</h1>
</div>

2、对于CSS代码,应该用“/* … */”。

/*incorrect*/
.container {
  width: 80%;
  margin: 0 auto;
} /* container styling */

/*correct*/
/* Container styling */
.container {
  width: 80%;
  margin: 0 auto;
}

六、代码注释怎么标注?

为了使注释更加规范易于阅读,我们可以按以下方式标注注释:

1、对于函数或者方法,我们可以用@name来标注名称,用@param来标注参数,用@return来标注返回值。

/**
 * Calculates the total price when given the price and quantity.
 * @function
 * @name calculateTotalPrice
 * @param {number} price - The price of a single unit.
 * @param {number} quantity - The quantity of the units.
 * @returns {number} The total price for the given quantity of units.
 */
function calculateTotalPrice(price, quantity) {
  return price * quantity;
}

2、对于变量,我们可以用@type来标注类型,用@description来标注其含义和作用。

/**
 * The user's first name.
 * @type {string}
 * @description This variable holds the user's first name.
 */
const firstName = "John";

七、代码注释快捷键

为了更快地注释代码,我们可以使用IDE或者文本编辑器提供的注释快捷键。以VS Code为例,以下是几个注释快捷键的示例:

1、快捷键ctrl + / (Mac中 对应Command+/):单行注释/取消注释。

2、快捷键ctrl + Shift + A (Mac中对应Command+Shift+A):多行注释/取消注释。

八、代码注释符号

在代码注释中,我们常用的符号包括:

1、“//”:单行注释。

2、“/* … */”:多行注释。

3、“/** … */”:文档注释。

4、“<!– … –>”:HTML注释。

5、“/* … */”:CSS注释。

九、代码注释模板选取

为了使代码注释更加规范和有效,我们可以使用代码注释模板。以下是一些常用的代码注释模板:

/* Function name: functionName
 * Description: Description of the function.
 *
 * Parameters:
 * - arg1 (type) - Description of arg1.
 * - arg2 (type) - Description of arg2.
 *
 * Return: The return value and its type.
 */
function functionName(arg1, arg2) {
  // Function Body
}
/**
 * Function name: functionName
 * Description: Description of the function.
 * @param {type} arg1 - Description of arg1.
 * @param {type} arg2 - Description of arg2.
 * @return {type} The return value and its type.
 */
function functionName(arg1, arg2) {
  // Function Body
}
<!-- Component: ComponentName -->
<!-- Description: Description of the component -->
<div class="component">
  // Component Body
</div>
/* Class name: ClassName
 * Description: Description of the class.
 *
 * Members:
 * - member1 (type) - Description of member1.
 * - member2 (type) - Description of member2.
 */
class ClassName {
  // Class Body
}

综上所述,代码注释不仅可以帮助我们更好地管理和维护代码,还可以减少代码错误和重构时间。因此,我们应该遵守代码注释规范,并使用恰当的注释快捷键和模板来提高工作效率。

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注