search
HomeBackend DevelopmentC++C++ function naming: Comparison of Hungarian notation and naming conventions

C Comparison of function naming conventions: Hungarian notation and naming conventions. Hungarian notation indicates types through variable name prefixes, which enhances readability but is verbose; naming conventions use more concise names to improve readability. Hungarian notation enforces type checking, which improves maintainability but can be confusing; the naming convention is more flexible. Hungarian notation has better reusability but poorer naming convention.

C++ 函数命名:匈牙利表示法与命名规范的比较

C Function Naming: Comparison of Hungarian Notation and Naming Conventions

Introduction

Function naming is crucial to maintaining a clear, maintainable code base. Two popular naming conventions are provided in C: Hungarian notation and naming conventions. This article will compare these two methods and provide practical examples to illustrate their differences.

Hungarian notation

Hungarian notation indicates the variable type by adding a prefix before the variable name. For example, iAge represents an integer age variable, and sName represents a string type name variable.

Naming convention

Naming convention uses a more general naming convention. It is recommended to use:

  • CamelCase naming: use lowercase letters for variable names, and start each new word with an uppercase letter (for example, ageInYears).
  • Pascal Naming: Use uppercase letters for variable names, with each word starting with an uppercase letter (for example, AgeInYears).

Practical case

The following two functions demonstrate the violation of Hungarian notation and naming conventions:

Hungarian notation

int getAge(int iAge) {
  return iAge;
}

Naming convention (camel case)

int getAgeInYears(int ageInYears) {
  return ageInYears;
}

Comparison

  • readable Performance: Hungarian notation provides more explicit variable type information, which can enhance readability. However, it also produces lengthy variable names. Naming conventions use more concise names, which improves readability.
  • Maintainability: Hungarian notation enforces type checking, which can help prevent type errors. However, it can lead to cluttered code, especially when using multiple variable types. The naming convention is more flexible, allowing easy conversion between different types.
  • Reusability: Hungarian notation has better reusability because different types of variables can be more easily identified using type prefixes. The naming convention is less reusable because it does not provide explicit type information.

Conclusion

Hungarian notation and naming conventions each have their own advantages and disadvantages. The final choice depends on the specific needs of the project and the developer's personal preferences.

The above is the detailed content of C++ function naming: Comparison of Hungarian notation and naming conventions. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Windows 11 系统下的五款最佳免费 C++ 编译器推荐Windows 11 系统下的五款最佳免费 C++ 编译器推荐Apr 23, 2023 am 08:52 AM

C++是一种广泛使用的面向对象的计算机编程语言,它支持您与之交互的大多数应用程序和网站。你需要编译器和集成开发环境来开发C++应用程序,既然你在这里,我猜你正在寻找一个。我们将在本文中介绍一些适用于Windows11的C++编译器的主要推荐。许多审查的编译器将主要用于C++,但也有许多通用编译器您可能想尝试。MinGW可以在Windows11上运行吗?在本文中,我们没有将MinGW作为独立编译器进行讨论,但如果讨论了某些IDE中的功能,并且是DevC++编译器的首选

如何优化Java代码的可维护性:经验与建议如何优化Java代码的可维护性:经验与建议Nov 22, 2023 pm 05:18 PM

如何优化Java代码的可维护性:经验与建议在软件开发过程中,编写具有良好可维护性的代码是至关重要的。可维护性意味着代码能够被轻松理解、修改和扩展,而不会引发意外的问题或额外的工作量。对于Java开发者来说,如何优化代码的可维护性是一个重要课题。本文将分享一些经验和建议,帮助Java开发者提升其代码的可维护性。遵循规范的命名规则规范的命名规则能够使代码更易读,

iostream头文件的作用是什么iostream头文件的作用是什么Mar 25, 2021 pm 03:45 PM

iostream头文件包含了操作输入输出流的方法,比如读取一个文件,以流的方式读取;其作用是:让初学者有一个方便的命令行输入输出试验环境。iostream的设计初衷是提供一个可扩展的类型安全的IO机制。

c++数组怎么初始化c++数组怎么初始化Oct 15, 2021 pm 02:09 PM

c++初始化数组的方法:1、先定义数组再给数组赋值,语法“数据类型 数组名[length];数组名[下标]=值;”;2、定义数组时初始化数组,语法“数据类型 数组名[length]=[值列表]”。

使用Redis和C++构建高性能的图像处理应用使用Redis和C++构建高性能的图像处理应用Jul 29, 2023 pm 08:36 PM

使用Redis和C++构建高性能的图像处理应用图像处理是现代计算机应用中的重要环节之一。由于图像处理的复杂性和计算量大,如何在保证高性能的同时提供稳定的服务是一个挑战。本文将介绍如何使用Redis和C++构建高性能的图像处理应用,并提供一些代码示例。Redis是一个开源的内存数据库,具有高性能和高可用性的特点。它支持各种数据结构,如字符串、哈希表、列表等,同

使用Vue.js和C++语言开发桌面应用的指南使用Vue.js和C++语言开发桌面应用的指南Jul 29, 2023 am 09:59 AM

使用Vue.js和C++语言开发桌面应用的指南随着互联网的发展,前端技术也在不断更新和进步。而Vue.js作为一种轻量级、高效、易用的前端框架,在开发Web应用方面具有很大的优势。然而,在一些特定的场景中,我们可能需要开发一些更加复杂的桌面应用程序,这时候就需要结合C++语言来实现一些底层功能。本文将会介绍如何使用Vue.js和C++语言开发桌面应用,并提供

PHP中的命名规范:如何使用PSR标准命名类、方法和变量PHP中的命名规范:如何使用PSR标准命名类、方法和变量Jul 30, 2023 am 11:17 AM

PHP中的命名规范:如何使用PSR标准命名类、方法和变量在PHP开发中,命名规范是一项非常重要的细节,它直接影响代码的可读性和可维护性。PSR(PHPStandardRecommendations)是PHP开发社区共同确定的一系列代码规范标准,包括了一些针对命名的具体要求。本文将介绍如何使用PSR标准规范命名PHP类、方法和变量,并提供代码示例作为参考。

浅析怎么下载安装VSCode历史版本浅析怎么下载安装VSCode历史版本Apr 17, 2023 pm 07:18 PM

VSCode历史版本的下载安装 VSCode安装 下载 安装 参考资料 VSCode安装 Windows版本:Windows10 VSCode版本:VScode1.65.0(64位User版本) 本文

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.