Gold And Silver Prices
Welcome to our blog, where we explore the fascinating world of software development, software testing, Cloud management. Our aim is to provide valuable insights, tips, and techniques that will help you become a proficient in any of the technology and enhance the quality of your software projects. We cover a wide range of topics, including SDLC, STLC, ISTQB, Microsoft Azure, AWS, HubSpot.
In JAVA Context
↗ Static: Static members (variables and methods) are associated with the class itself rather than with individual instances.
↗ Non-Static: Non-static members are specific to each instance of a class, as they are tied to objects created from the class.
↗ Memory allocation
---------------------
↗ Static : Static members are allocated memory only once, at the time of class loading. They are shared among all instances of the class.
↗ Non-static: Non-static members have memory allocated separately for each instance of the class. Each object has its own copy of non-static members.
Comments
Post a Comment