Java.lang.Void class in Ava

Source: Internet
Author: User
Tags class definition

Software 151, Shu Jun

When reading the JDK source code, there is a void class, which is a non-instantiated placeholder class that holds a reference to a class object that identifies the Java keyword void.

The class definition for void is as follows:

Package Java.lang;
Public final class Void {
Private Void () {
}
public static final Class TYPE = Class.getprimitiveclass ("void");
}
I was looking at the source code of the Threadgroup class found, its source part is as follows:

Public Threadgroup (Threadgroup Threadgroup, String s) {
This (checkparentaccess (threadgroup), Threadgroup, s); The Checkparentaccess () method has no return value, this is called to the following argument constructs
}

Private Threadgroup (Void void1, Threadgroup Threadgroup, String s) {
nunstartedthreads = 0;
name = S;
maxpriority = threadgroup.maxpriority;
daemon = Threadgroup.daemon;
Vmallowsuspension = threadgroup.vmallowsuspension;
parent = Threadgroup;
Threadgroup.add (this);
}
In addition to the above usage, the Void class has any other special usage for the time being I don't know, write it down first.

Java.lang.Void class in Ava

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.