Storage comparison of various variable constants in c ++

Source: Internet
Author: User

Storage comparison of various variables/constants in c ++:
Variable location variable type visibility storage location name connection example
--------------------------------------------
Local variables in the function. The stack in the function does not exist. Fun () {int ;}
Static variable in the function. This compilation unit is connected to fun () {static int A;} in the static data zone ;}
Function external global variables all compilation units static data areas external connections int A; Main (){}
Function external constant const int A = 100 in the compiled unit symbol table;
Const in class: What is the object lifecycle? (Not during compilation )? Class base {const size ;};
What is the life cycle symbol table of the class Enum in the class (during compilation )? Class base {Enum {size = 100 };};
Class base {static int x ;};
Class base {static const int x ;};

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.