Java class variables and class methods

Source: Internet
Author: User

Tag: Lin Line This instance uses ring print void log

A class variable is also called a static variable, a variable that is defined within a class that all methods can access, and a class method similar to the global variable static int = 123;java is decorated with the static keyword. For example, class Cat {static string Name;public Cat (string name, int age, string color) {This.age=age;this.color=color;this.name=n Ame;} A static method that uses static modifiers is a class method (also called a static method) that belongs to the entire class, not static void GetName () {System.out.println ("name is" +name) that belongs to an instance;} Rules in Java are class variables that use class methods to access non-static variables that cannot be accessed in a Java static method when the class method should be used: When you are writing code, there is a way to use the class method when you want all objects to be shared.

Java class variables and class methods

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.