答案:C 函数名称应具备可读性和一致性,以提高代码可维护性和可理解性。可读性准则:使用描述性名称避免使用动名词一致性准则:使用一致的命名约定使用Pascal 或Camel 命名法
C 函数名称的可读性和一致性
在C 中,函数名称是程序员传递意图和使代码易于阅读的重要方式。遵循可读性和一致性原则可显着提高代码可维护性和可理解性。
可读性准则
int calculate_total_cost();
void write_file(const std::string& filename); // 避免:writeFile() int calculate_total_cost(); // 避免:calculateTotalCost()
一致性准则
// 用"_t"后缀表示 template 函数 template<typename T> void print_array(const T* array, int size); template<typename T> void print_list(const std::list<T>& list);
Pascal: CalculateTotalCost() Camel: calculateTotalCost()
实战案例
让我们使用这些准则改进以下C 代码中的函数名称:
// 原代码 int calc_cost(int items, double price); void writeToLog(const std::string& msg); // 改进后的代码 int calculate_total_cost(int number_of_items, double item_price); void write_to_log(const std::string& message);
这些改进提高了代码的可读性和一致性,使函数的功能一目了然。
以上是C++ 函数名称的可读性和一致性的详细内容。更多信息请关注PHP中文网其他相关文章!