answersLogoWhite

0

There is no such thing.

User Avatar

Wiki User

16y ago

Still curious? Ask our experts.

Chat with our AI personalities

JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
JudyJudy
Simplicity is my specialty.
Chat with Judy
BeauBeau
You're doing better than you think!
Chat with Beau

Add your answer:

Earn +20 pts
Q: What are static files?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Can static variables be declared in header file?

Can static variables be declared in a header file?You can't declare a static variable without defining it as well (this is because the storage class modifiersstatic and extern are mutually exclusive). A static variable can be defined in a header file, but this would cause each source file that included the header


Which one executed first static block or static methods in java?

Static Blocks are always executed first. A static block is executed when your class is charged but a static method is executed only when is called, therefor first the class is charged and then is executed a method.


What is the difference between static function and global static function?

'global static'?! There is no such thing.


Can you refer non static method from static content in java?

Shortly, you can not.Different approaches are however available.1. Put your non static method in different class. Then call it from your static content by first instantiating the class.2. Make a duplicate static method for your non static method and use from your static content.


What are difference between static and dyanamic assembly?

Static Assemblies: - These assemblies are .NET binaries located on the disk as a file or set of files and directly loaded from there as and when CLR requests for them. Whenever one compiles the C# code, one gets STATIC assemblies. Dynamic Assemblies: - These assemblies are loaded directly from the Memory and not stored on the disk. However one can save them later to the disk. These binaries are created on the fly in the memory using SYSTEM.REFLECTION.EMIT namespace. Hence the name- dynamic.