search
HomeJavajavaTutorialEverything in Java is an object
Everything in Java is an objectJun 26, 2017 am 11:42 AM
object

1. Use references to operate objects

Everything in Java is regarded as an object, and the operation object is actually a "reference" of the operation object. The relationship between the two is equivalent to using the remote control (reference) to operate the TV (object). Having a reference does not necessarily require an object to be associated with it, such as Sting a; just declaring a reference is not associated with an object.

2. You must create all objects

Once you create a reference, you want to associate it with an object. You usually use new to create a new object (strings in Java can be created with quoted text initialization).

 2.1. Storage location

  (1) Register. The fastest storage area (located inside the processor) cannot be directly controlled by humans in Java (c++/c allows you to suggest register allocation methods to the compiler).

 (2) Stack. Located in RAM, the stack pointer moves downward to allocate new memory, and moves upward to release memory. It is very fast, second only to registers. But when creating the system, the java system must know the exact declaration period of all items stored in the stack in order to move the pointer up and down. This constraint limits the flexibility of the program. Some basic types of variables and object references (Java objects are not among them) are stored on the stack.

  (3) Heap. A general memory pool (located in RAM) used to store all java objects. The advantage of the heap unlike the stack is that the compiler does not need to know how long the data stored in the heap survives. When an object is new, memory is automatically allocated in the heap for storage. The compiler automatically recycles the object when it is no longer needed without human control. Of course, this flexibility comes at a price: creating objects on the stack takes more time than in C/C++.

  (4) Constant storage. Constant values ​​are usually stored directly within program code because constant values ​​never change.

  (5) Non-RAM storage. Data lives outside the program and is not subject to any control by the program. Such as stream objects and persistent objects.

2.2. Special case: basic types

A series of types often used in programming, such as integers, decimals, characters... These types are called basic types and are Special treatment.

Why should we be treated specially? new stores objects in the heap. As mentioned before, data stored in the heap takes longer, so for these frequently used, particularly small, simple data, the cost of storing it in the heap is too high. Therefore, Java does not use new to create variables, but creates an "automatic" variable that is not a reference. This variable stores the value directly and places it on the stack. The storage space occupied by basic types is fixed.

In order to adapt to the fact that everything is an object, basic types have a wrapper class, so that a non-basic object can be created in the heap to represent the corresponding basic type.

For example:

char c='a';
Character ch=new Character(c);
或者
Character ch=new Character('a');

The automatic packaging function in java se5 can automatically convert between the two.

 2.3. Scope

Variable scope: Variables include basic types and class references that directly store values. Only survives within the code segment.

Object scope:

{
    String s=new String("string");      
}//end of scope

References are stored on the stack and end at the end of the scope. However, the String object pointed to by s continues to live in the heap. It is up to Java's garbage collector to determine when to recycle the object. Doing this eliminates most "memory leak" problems.

 2.4. Method parameters

Java is different from c/c++. Many people are confused about whether Java method parameters are passed by value or by reference. For basic data types, values ​​are passed, because basic data stores values ​​directly in the stack area. The object is passed by reference (the object reference in the stack area is the address of the object in the heap area). Take String and StringBuilder to illustrate.

Let’s look at two examples.

public class Test
{public static void test(String str)
        {
            str = "world"+str;
        }public static void main(String[] args)
        {
            String  str1 = new String("hello");
            test(str1);
            System.out.println(str1);
        }
}

The output result of the above example is still hello, why? Because the modification to str in the test is not a modification to the original object, this involves the characteristics of the String object. The String object cannot be modified after it is created. The above modification is actually: create an empty StringBuilder and then call the append method to insert it. "world", str, and then call the toString method to create a new String object. So the reference object of str is already brand new at this time, so str1 in the main function has not changed. Let's look at another example of StringBuilder.

public class test1 {    static void test(StringBuilder str){
        str.append("1234");
    }    public static void main(String[] args) {
        StringBuilder a=new StringBuilder("abc");
        test(a);
        System.out.println(a.toString());
    }
}

The above output result is abc1234. The modification to str in test also takes effect on a, because the references of str and a point to the same StringBuilder object, and StringBuilder is modifiable. . It is enough to show that what is passed is a reference.

The above is the detailed content of Everything in Java is an object. 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
使用PHP的json_encode()函数将数组或对象转换为JSON字符串使用PHP的json_encode()函数将数组或对象转换为JSON字符串Nov 03, 2023 pm 03:30 PM

JSON(JavaScriptObjectNotation)是一种轻量级的数据交换格式,已经成为Web应用程序之间数据交换的常用格式。PHP的json_encode()函数可以将数组或对象转换为JSON字符串。本文将介绍如何使用PHP的json_encode()函数,包括语法、参数、返回值以及具体的示例。语法json_encode()函数的语法如下:st

源码探秘:Python 中对象是如何被调用的?源码探秘:Python 中对象是如何被调用的?May 11, 2023 am 11:46 AM

楔子我们知道对象被创建,主要有两种方式,一种是通过Python/CAPI,另一种是通过调用类型对象。对于内置类型的实例对象而言,这两种方式都是支持的,比如列表,我们即可以通过[]创建,也可以通过list(),前者是Python/CAPI,后者是调用类型对象。但对于自定义类的实例对象而言,我们只能通过调用类型对象的方式来创建。而一个对象如果可以被调用,那么这个对象就是callable,否则就不是callable。而决定一个对象是不是callable,就取决于其对应的类型对象中是否定义了某个方法。如

使用Python的__contains__()函数定义对象的包含操作使用Python的__contains__()函数定义对象的包含操作Aug 22, 2023 pm 04:23 PM

使用Python的__contains__()函数定义对象的包含操作Python是一种简洁而强大的编程语言,提供了许多强大的功能来处理各种类型的数据。其中之一是通过定义__contains__()函数来实现对象的包含操作。本文将介绍如何使用__contains__()函数来定义对象的包含操作,并且给出一些示例代码。__contains__()函数是Pytho

使用Python的__le__()函数定义两个对象的小于等于比较使用Python的__le__()函数定义两个对象的小于等于比较Aug 21, 2023 pm 09:29 PM

标题:使用Python的__le__()函数定义两个对象的小于等于比较在Python中,我们可以通过使用特殊方法来定义对象之间的比较操作。其中之一就是__le__()函数,它用于定义小于等于比较。__le__()函数是Python中的一个魔法方法,并且是一种用于实现“小于等于”操作的特殊函数。当我们使用小于等于运算符(<=)比较两个对象时,Python

详解Javascript对象的5种循环遍历方法详解Javascript对象的5种循环遍历方法Aug 04, 2022 pm 05:28 PM

Javascript对象如何循环遍历?下面本篇文章给大家详细介绍5种JS对象遍历方法,并浅显对比一下这5种方法,希望对大家有所帮助!

Python中如何使用getattr()函数获取对象的属性值Python中如何使用getattr()函数获取对象的属性值Aug 22, 2023 pm 03:00 PM

Python中如何使用getattr()函数获取对象的属性值在Python编程中,我们经常会遇到需要获取对象属性值的情况。Python提供了一个内置函数getattr()来帮助我们实现这个目标。getattr()函数允许我们通过传递对象和属性名称作为参数来获取该对象的属性值。本文将详细介绍getattr()函数的用法,并提供实际的代码示例,以便更好地理解。g

使用Python的isinstance()函数判断对象是否属于某个类使用Python的isinstance()函数判断对象是否属于某个类Aug 22, 2023 am 11:52 AM

使用Python的isinstance()函数判断对象是否属于某个类在Python中,我们经常需要判断一个对象是否属于某个特定的类。为了方便地进行类别判断,Python提供了一个内置函数isinstance()。本文将介绍isinstance()函数的用法,并提供代码示例。isinstance()函数可以判断一个对象是否属于指定的类或类的派生类。它的语法如下

PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块Jul 29, 2023 pm 11:19 PM

PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块摘要:在开发中,经常遇到需要重复使用的代码块。为了提高代码的可维护性和可重用性,我们可以使用类和对象的封装技巧来对这些代码块进行封装。本文将介绍如何使用类和对象封装可重复使用的代码块,并提供几个具体的代码示例。使用类和对象的封装优势使用类和对象的封装有以下几个优势:1.1提高代码的可维护性通过将重复

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

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.