Action Analysis for Java-created objects

Source: Internet
Author: User

First, Java objects are stored in the heap of memory when they are created.

The initialization of a class member is performed when the object is created before the constructor initialization object is called.

Package com.test.createsort;

public class Createobjectsort {

public static void Main (string[] args) {
Test T = new Test ("Testest");
System.out.println (t);
}
}
Class test{
Private String name;//class member privately, method public
Private String name2 = "name2";

Public test (String name1) {
TODO auto-generated Constructor stub
SYSTEM.OUT.PRINTLN (name + "= =" + name2);
name=name1;
}
Public String toString () {
return name+ "---" +NAME2;
}
}

Action Analysis for Java-created objects

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.