Class
1. What is a class
A class is a collection of attributes (external characteristics) and behaviors (functions) of things
2. Want To know what a class is in Java
, we must first know what a class is in real life, because Java originates from real life.
For example, let’s talk about human beings. Why are we humans? Because we are similar in everything. We all have common external characteristics, such as ears, nose, mouth, etc., and we all have names. , age, etc. We all have similar and identical functions, such as eating, drinking, sleeping, and so on, so if we are surrounded together, we are called human beings.
3. How to write a class
To define a class, use the keyword class.
Format:
2. What are the attributes in this type of thing: What are attributes? It is the external characteristics of things and member variables. 3. What are the behaviors in this type of thing: What is behavior? It is the function of something, usually a verb or a member method. Example:Requirements:Define a human1. We are looking for the described human2.Attributes: name, Age, gender, blood type3. Actions: eating, drinking, defecation, peeing, sleepingclass class name{
1. Know what class you want to write and find it from real life.
class Liu { //类的属性 String name; int age; String sex; String xuexing; //类的行为; public void eat() { System.out.println("吃"); } public void drink() { System.out.println("喝"); } public void la() { System.out.println("拉"); } public void sa() { System.out.println("撒"); } public void sleep() { System.out.println("睡"); } }Object1. What is an objectObject It is the specific embodiment of the class. 2. Format of creating objects
Class name object name = new class name();
Liu p = new Liu();3. How to use the attributes in the objectp.name = "tom";Object name.Attribute name = attribute value;
p.age = 18;
p.sex = "Woman";p.xuexing = "AB type"p.eat();Object name.Method name();
4. How to use the behavior in the object
p.drink();
p.sleep();Member variables and local variables1. What is a local variableA variable defined in a method, or a method declaration is a local variable. Example:
5. Examplepackage com; //测试类:里面会提供主方法 public class Demoliu { //程序执行的入口,主方法 public static void main(String[] args) { //创建出来一个小人 Liu p1 = new Liu(); //给这个人的属性赋值 p1.name = "tom"; p1.age = 18; p1.sex = "女人"; p1.xuexing = "AB型"; System.out.println(p1.name + "..." + p1.age + "..." + p1.sex + "..." + p1.xuexing); //调用这个人的行为 p1.eat(); p1.drink(); p1.sleep(); //创建出来一个小人 Liu p2 = new Liu(); //给这个人的属性赋值 p2.name = "jerry"; p2.age = 19; p2.sex = "男人"; p2.xingzuo = "射手座"; System.out.println(p2.name + "..." + p2.age + "..." + p2.sex + "..." + p2.xuexing); //调用这个人的行为 p2.eat(); p2.drink(); p2.sleep(); } } //描述类:人类 class Liu { //属性:外在特征,成员变量 String name; //姓名 int age; //年龄 String sex; //性别 String xingzuo; //星座 //行为:具备的功能,成员方法 public void eat() { System.out.println("吃"); } public void drink() { System.out.println("喝"); } public void sleep() { System.out.println("睡"); } }
Variables
public static void main(String[] args)
{
int i = 1;
{
int j = 2;
}
}
public static int getSum(int i, int j) {
int sum = i + j;
return sum;
}
2. What is a member variableDefined in a class, variables outside the method are member variables. Example: class Person
{
String name;
int age;
public void eat() {
}
}
3. The difference between member variables and local variables
1. Different definition locations
Local variables: defined in methods or methodsMember variables: defined outside the methods in the class
2. Different memory locationsLocal variables: stored in methods on the stackMember variables: stored in objects in the heap
3. Different initial values
Local variables: There is no default initial value. If you want to use it, you must first assign a value before using it
Member variables: There is a default initialization value. You can also use it if you don’t assign a value.
String type Variable default initial value NULL
int type variable default initial value 0
Boolean type variable default initial value FALSE
Double type variable default initial value 0.0
char type variables u0000'
4. Different life cycles
Local variables: Because they are stored in the method, they exist with the existence of the method and disappear with the disappearance of the method
Member variables: Because they are stored in the method in the object, so it exists with the existence of the object and disappears with the disappearance of the object
5. Different scopes
Local variables: they cannot be used after the method is used
Member variables: in this local variable
can be used in methods in the class
The above is the detailed content of How to use Java classes, objects and variables. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
