Home  >  Article  >  Java  >  What is class in java?

What is class in java?

藏色散人
藏色散人Original
2019-05-22 14:22:448125browse

Java is an object-oriented programming language. In addition to basic data types, Java requires that every data type must be a class.

What is class in java?

The object-oriented programming idea strives to make the description of things in computer language as consistent as possible with the original appearance of the thing in the real world, class (class ) and object (object) are the core concepts of the object-oriented method.

A class is a description of a certain type of thing, which is an abstract and conceptual definition; the object is an individual of the type of thing that actually exists, so it is also called an instance. The relationship between classes and objects is like the relationship between concepts and objects. A class is like a template, and an object is an instance of the template.

The main idea of ​​object-oriented is to regard objective things as objects with states and behaviors, and find the common states and behaviors of objects of the same type through abstraction to form classes.

Class declarations in Java all begin with class.

class 类名称 {
//声明成员变量
//声明成员方法
}

Simply put, class is the keyword that defines a class in java.

The above is the detailed content of What is class in java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use java frameworkNext article:How to use java framework