What is Hungarian notation?

Welcome Delta Sigma Pi

  • Accessibility
  • Sales:

    Home:

    1-800-426-7235

    Business:

    1-866-426-0911

    Chat Now >

    Visit Sales Support Page >


    Order Support:

    Order Lookup >

    Visit Order Support Page >

    Technical Support >

Lenovo
All
  • All
  • Laptops
  • Desktops
  • Workstations
  • Monitors
  • PC Accessories & Electronics
  • Tablets
  • Servers & Storage
  • Servers Accessories
  • Sign In / Create Account
    My Lenovo Account
    Keep track of your wishlist, orders, and rewards all in one place
    Sign In / Create Account
    Welcome Back!
    Access your order, subscriptions, saved carts, rewards balance, and profile
    View My Account
    Orders
    View & track your orders
    Rewards
    Earn & redeem Rewards
    Profile
    Edit name, password, and account settings
    Wishlist
    Manage a wishlist of your favorite products
    Products
    Manage your devices, accessories
    Product Registration
    Register your product and/or update your warranty dates
    Sign Out
  • My Lenovo Rewards
  • Cart
  • Products
  • Solutions
  • Services
  • Support
  • About Lenovo
  • Deals
  • Student
  • Gaming
  • AI
  • Digital Workplace
  • Hybrid Cloud
  • Edge
  • Sustainability
  • TruScale
  • Solutions by Industry
  • Alliance Partners
  • Other Solutions
  • Resources
TEMPORARILY UNAVAILABLE
DISCONTINUED
Temporary Unavailable
Cooming Soon!
. Additional units will be charged at the non-eCoupon price. Purchase additional now
We're sorry, the maximum quantity you are able to buy at this amazing eCoupon price is
Sign in or Create an Account to Save Your Cart!
Sign in or Create an Account to Join Rewards
View Cart
Remove
Your cart is empty! Don’t miss out on the latest products and savings — find your next favorite laptop, PC, or accessory today.
item(s) in cart
Some items in your cart are no longer available. Please visit cart for more details.
has been deleted
Please review your cart as items have changed.
of
Contains Add-ons
Subtotal
Proceed to Checkout
Yes
No
Popular Searches
What are you looking for today ?
Trending
Recent Searches
Items
All
Cancel
Top Suggestions
View All >
Starting at
  • Black Friday in July! Limited-time Doorbusters + Buy more, Save more!  Shop Now >

  • My Lenovo Rewards! Earn 3%-9% in rewards and get free expedited delivery on select products. Join for Free >

  • Buy online, pick up select products at Best Buy. Shop Pick Up >

  • Lease-to-own today with Katapult. Get started with an initial lease payment as low as $1! * Learn More >

Home > Glossary > What is Hungarian notation?
Glossary Hero
Learn More
StarStar

Annual Sale

Lenovo Laptop SaleLenovo Laptop Sale

Laptop Deals

Desktop DealsDesktop Deals

Desktop Deals

Workstation DealsWorkstation Deals

Workstation Deals

StoreStore

Pick Up Today at Best Buy

ControllerController

Gaming PC & Accessory Deals

MouseMouse

PC Accessories & Electronics Deals

MonitorMonitor

Monitor Deals

Tablet and phoneTablet and phone

Tablets & Phones Deals

ServerServer

Server & Storage Deals

Discount tagDiscount tag

Clearance Sale


What is Hungarian notation?

Hungarian notation is a naming convention used in programming to provide meaningful and descriptive names to variables. The main idea behind Hungarian notation is to prefix variable names with one or more lowercase letters that represent the data type or purpose of the variable. This convention helps programmers understand the meaning and usage of variables without having to look at their declarations.

Why is Hungarian notation used?

Hungarian notation is used to improve code readability and maintainability. By using a consistent naming convention, it becomes easier for developers to understand the purpose and usage of variables, functions, and other program elements. It also helps prevent common programming errors, such as using a variable of one type in an incompatible context. Hungarian notation provides visual cues about the data types and helps identify potential issues before they cause runtime errors.

How does Hungarian notation work?

Hungarian notation works by adding a prefix to variable names that represents their data type or purpose. For example, a string variable can be prefixed with "str", an integer variable with "n", a boolean variable with "b", and so on. This prefix is typically followed by a descriptive name that indicates the purpose of the variable. For instance, a string variable that stores a user's name could be named "strUserName".

Can Hungarian notation be used in all programming languages?

While Hungarian notation can be used in any programming language, its popularity has declined in recent years. Many modern programming languages have strong type systems and expressive syntax that make the use of prefixes unnecessary. Additionally, most code editors and integrated development environments provide features like syntax highlighting and tooltips that can effectively convey information about variables' data types without the need for explicit prefixes.

Would using Hungarian notation improve my code quality?

Using Hungarian notation alone does not guarantee improved code quality. While it can provide some benefits, such as better readability and reduced likelihood of certain programming errors, there are many other aspects to consider when writing high-quality code. Following best practices, writing modular and maintainable code, and adhering to established coding conventions are equally important factors for improving code quality.

Does Hungarian notation affect program performance?

No, Hungarian notation does not affect program performance. It is purely a naming convention and has no impact on the execution speed or memory usage of a program. Using prefixes in variable names is resolved by the compiler or interpreter during the compilation or interpretation process and does not affect the program's runtime behavior.

When should I consider using Hungarian notation?

You should consider using Hungarian notation if you are working on a project that follows a specific coding style guide or if you are collaborating with other developers who are accustomed to using this convention. In some legacy codebases, Hungarian notation may already be prevalent, and it may be more practical to stick with the existing naming convention rather than introducing inconsistency.

Can I use Hungarian notation alongside other naming conventions?

Yes, you can use Hungarian notation alongside other naming conventions, although it is generally recommended to stick to a single naming convention within a codebase for consistency. If you are working on a project that already uses Hungarian notation, it's best to follow that convention throughout the code. However, if you are starting a new project or working on an open-source project, it's advisable to choose a naming convention that is widely accepted and understood by the programming community.

Does Hungarian notation apply to all types of variables?

Hungarian notation can be applied to all types of variables, including primitive data types like integers, strings, booleans, as well as complex data structures like arrays and objects. However, the use of Hungarian notation for complex data structures can become more challenging and may require longer prefixes to adequately describe the structure and purpose of the variable.

Does Hungarian notation improve code documentation?

Yes, Hungarian notation can serve as a form of self-documentation within the code. By using descriptive prefixes, it becomes easier for developers to understand the intended usage and data type of variables without having to refer to external documentation. This can be especially helpful when working with large code bases or collaborating with other developers.

Are there any programming languages that encourage the use of Hungarian notation?

While there are no programming languages that explicitly enforce the use of Hungarian notation, some languages have conventions or coding style guides that recommend its use. For example, older versions of the Microsoft Visual Basic programming language promoted the use of Hungarian notation. However, it's important to note that coding conventions can vary between programming languages and communities.

Can Hungarian notation be helpful in large codebases?

Hungarian notation can be helpful in large codebases, particularly when multiple developers are working on the same code. The use of consistent naming conventions, such as Hungarian notation, can facilitate collaboration and make it easier to understand the purpose and usage of variables across different parts of the codebase.

Can Hungarian notation be used in dynamically typed languages?

While Hungarian notation was initially popularized in statically typed languages, it can still be used in dynamically typed languages. However, the benefits may be less pronounced since the data types of variables can change at runtime.

Is Hungarian notation used in modern software development practices?

Hungarian notation is less commonly used in modern software development practices. With advancements in programming languages, integrated development environments (IDEs), and coding conventions, other naming conventions such as descriptive variable names, camel case, or Pascal case have gained more popularity.

How does Hungarian notation handle global variables?

Hungarian notation can be applied to global variables by including the appropriate prefix to indicate the variable's data type and purpose. However, it's worth noting that the use of global variables is generally discouraged in modern programming practices due to potential issues with code modularity and maintainability.

How does Hungarian notation handle null or undefined values?

Hungarian notation does not have specific prefixes for null or undefined values. In these cases, it is generally recommended to use descriptive variable names that accurately convey the intention and possible value states, rather than relying solely on prefixes.

Looking for a Great Deal?
Shop Lenovo.com for great deals on A+ Education PCs, Accessories, Bundles and more.
Shop Deals Now

  • Legion 7i Gen 9 (16″ Intel) Gaming Laptop
    Starting at
    $1,699.99
    Learn More
  • ThinkPad X9 15 Aura Edition (15ʺ Intel) Laptop
    Starting at
    $1,127.97
    Learn More
  • Yoga Book 9i (13” Intel)
    Starting at
    $1,999.99
    Learn More
  • Yoga 9i 2-in-1 Aura Edition (14″ Intel) Laptop
    Starting at
    $1,439.99
    Learn More
  • ThinkPad P1 Gen 7 (16″ Intel) Mobile Workstation
    Starting at
    $1,871.22
    Learn More
  • Shop
    • Student Deals
    • K-12 Student Laptops
    • Student Accessories
    • Laptops by Major
    Education resource
    Explore
    • What is STEM?
    • Best Laptops for College
    • Student & Teacher Discounts
    • Lenovo Sustainability Programs
    Education carry case

    Stem Articles
    See All STEM Articles
    • Online STEM Education

    • STEM Career Tips & Resources

    • Women in STEM

    • STEM Educator Training

    • STEM Grants & Funding

    • STEM Education: Coding for Kids

    • STEM Education: Robotics

    • STEM Education: Biotechnology

    • STEM Education: Sustainability

    • STEM Education: AI & ML

    While every effort has been made to ensure accuracy, this glossary is provided for reference purposes only and may contain errors or inaccuracies. It serves as a general resource for understanding commonly used terms and concepts. For precise information or assistance regarding our products, we recommend visiting our dedicated support site, where our team is readily available to address any questions or concerns you may have.

    Why Lenovo?

    Go Greener with Leno...

    Lenovo is committed to Smarter Climate Action with lower energy laptops, use of sustainable materials and packaging, and available CO2 Offset Services.
    Learn More
    pastel background

    Get It Now, Pay For ...

    Lenovo has multiple financing option: the Lenovo Credit Card, installment plans, and lease-to-own financing op...
    Learn More
    pastel background

    Productivity & Peace of Mind

    Stay productive with Premium Care Plus - 24/7 priority support and coverage against accidental damage. Power through your day with our Smart Performance and extended battery solutions.
    Learn More
    pastel background

    Fast & Secure

    Get the most from your laptop with Lenovo’s state-of-the-art Smart Performance, delivering powerful, all-in-on...
    Learn More
    pastel background

    Assistance and Suppo...

    Chat with a trained professional who can help you find the right products, place or check on an order, or setup your Education laptop.
    Contact Us
    pastel background
    Enter email to receive Lenovo marketing and promotional emails. Review our Privacy Statement for more details.
    Please enter the correct email address!
    Email address is required
    • Facebook
    • Twitter
    • Youtube
    • Pinterest
    • TikTok
    • Instagram
    Select Country / Region:
    Country
    AndroidIOS

    About Lenovo

    • Our Company
    • News
    • Investors Relations
    • Compliance
    • ESG
    • Product Recycling
    • Product Security
    • Product Recalls
    • Executive Briefing Center
    • Lenovo Cares
    • Careers
    • Formula 1 Partnership

    Products & Services

    • Laptops & Ultrabooks
    • Smarter AI for You
    • Desktop Computers
    • Workstations
    • Gaming
    • Tablets
    • Servers, Storage, & Networking
    • Accessories & Software
    • Services & Warranty
    • Product FAQs
    • Outlet
    • Deals
    • Lenovo Coupons
    • Cloud Security Software
    • Windows 11 Upgrade

    Resources

    • Legion Gaming Community
    • Lenovo EDU Community
    • Lenovo Pro Community
    • Lenovo Pro for Business
    • My Lenovo Rewards
    • Lenovo Financing
    • Lenovo Trade-in
    • Affiliate Program
    • Affinity Program
    • Employee Purchase Program
    • Lenovo Partner Hub
    • Laptop Buying Guide
    • Where to Buy
    • Glossary

    Customer Support

    • Contact Us
    • Policy FAQs
    • Return Policy
    • Shipping Information
    • Order Lookup
    • Register a Product
    • Replacement Parts
    • Technical Support
    • Forums
    • Provide Feedback
    © 2025 Lenovo. All rights reserved.
    PrivacyCookie Consent ToolSite MapTerms of UseExternal Submission PolicySales terms and conditionsAnti-Slavery and Human Trafficking Statement
    Compare  ()
    x
    Call

    Need Help? Call: 

    1-800-426-7235
    Select Your Store
    Add items to your cart?
    We've noticed that you've entered a different store. Do you want to add these items to your cart in the new store?
    No Yes. Add in Lenovo Pro