answersLogoWhite

0

What is meant by static identifier?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

Nothing. I guess you mean a static variable.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a static identifier?

A static identifier in a block has execution time lifespan, i.e. its value persists from point of initialization to program termination.A static identifier outside of any block has execution time lifespan, because of its non-block semantics, but the static attribute takes on a different meaning, and means that it is not visible to modules outside of the file it is defined in.(Only applicable to C++ - answer provided for completeness sake) A static identifier in a class is common to all instances of that class. A static method of a class can access only static identifiers of that class.


Do static methods operate on objects why?

No. Why? By definition. A static method is, precisely, a method that is not meant to operate on an object. It can only work with static fields, and other static methods, of its class.


What does CSM abbreviation meant in the construction industry?

DSM means Continuum Static Method


What is the difference between static var compensator and static var cenerator?

there is no such thing as static var cenerator but if you meant static var generator then the difference is the same. it is one in the same thing, a combination or inductance and capitance to generate either reactive inductance or capacitive reactance.


What is meant by the storage class of a variable?

auto, extern, static, register, typedef (only formally)


What is meant by memory address?

A memory address is an identifier for a memory location, at which a computer program or a hardware device can store data and later retrieve it.


What is meant by identifier?

An identifier is the friendly name used by the compiler to represent the location of an object in memory. You could say *0x1234 = *0x3464 + *0x9587, or you could say A = B + C, given that A, B, and C, had those addresses. A, B, and C are identifiers in this example.


What is the difference between a static-shielding bag and a static-resistant bag?

A static-shielding bag is designed to protect electronic components from static electricity by dissipating charge buildup, while a static-resistant bag is meant to reduce the generation of static electricity but does not provide full protection like a static-shielding bag. Static-shielding bags are commonly used to transport and store sensitive electronic devices, while static-resistant bags are used for general electronics packaging.


What is a unique item identifier?

a unique item identifier means what?


What dose satictic mean?

It seems like there may be a typo in your question. If you meant "static," it refers to something that does not change or move. In the context of technology, it can refer to static data or web pages that do not change dynamically. If you meant something else, please provide more context for me to assist you better.


What is meant by Static budget?

Static budget is a budget which envisages only one level of business activity.Here business activity means volume of production or sales.The static budget is camparitively easy to prepare.It tends to be far less accurate then flexible budget.


Can you pass addresses to a function in C plus plus?

If the identifier you want to pass is an ordinary identifier, pass it as the address of... function(&identifier); If the identifier you want to pass is an array identifier, pass its name... function(arrayname);