zoukankan      html  css  js  c++  java
  • Class类介绍(中文文档)

    public final class

    Class

    extends Object

    implements Serializable AnnotatedElement GenericDeclaration Type

    java.lang.Object

         java.lang.Class<T>

    Class Overview(类概述)

    The in-memory representation of a Java class. This representation serves as the starting point for querying class-related information, a process usually called "reflection". There are basically three types of Class instances: those representing real classes and interfaces, those representing primitive types, and those representing array classes.

    Public Methods(公共方法)

    public String getName ()

    Returns the name of the class represented by this Class. For a description of the format which is used, see the class definition of Class.

    Returns(返回)

    the name of the class represented by this Class.

    代表这个类的名称。(包名+类名)

    public String getSimpleName ()

    Returns the simple name of the class represented by this Class as defined in the source code. If there is no name (that is, the class is anonymous) then an empty string is returned. If the receiver is an array then the name of the underlying type with square braces appended (for example "Integer[]") is returned.

    Returns(返回)

    the simple name of the class represented by this Class.

    代表这个类的简单名称。(类名)

  • 相关阅读:
    Creckme_Andrnalin.3
    逆向工程核心原理——第十三章
    Creckme_Andrnalin.2
    逆向工程核心原理——第十章
    第一个windows桌面应用程序
    逆向工程核心原理——第八章
    逆向工程核心原理——第七章
    逆向工程核心原理——第六章
    Creckme_6_aLoNg3x.1
    35. 搜索插入位置
  • 原文地址:https://www.cnblogs.com/renqingping/p/Class.html
Copyright © 2011-2022 走看看