devxlogo

Properties of Static Storage

Properties of Static Storage

Global objects, static data members of a class, namespace variables, and static variables in functions reside in static memory. Static objects are allocated by the linker and their address remains the same throughout the program’s execution. Every static object is constructed only once during the lifetime of the program. By default, static data are initialized to binary zeroes. Static objects are subsequently initialized by their constructors. Here are some examples of variables with static storage:

 int num; //global variables have static storage int func(){   static calls; //initialized to 0 by default  return ++calls;}class C{private:  static bool b;};namespace NS{  std::string str; //str has static storage}
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist