The difference between Classes, Objects, and Instances

前端 未结 16 2177
耶瑟儿~
耶瑟儿~ 2020-11-22 05:32

What is a class, an object and an instance in Java?

16条回答
  •  佛祖请我去吃肉
    2020-11-22 06:29

    Class is a template or type. An object is an instance of the class.

    For example:

    public class Tweet {
    
    }
    
    Tweet newTweet = new Tweet();
    

    Tweet is a class and newTweet is an object of the class.

提交回复
热议问题