Java Class toString()方法
java.lang.Class.toString() 转换对象为字符串。该字符串表示是字符串“类”或“接口”,后跟一个空格,然后类由getName返回的全限定名的格式。
1 语法
public String toString()
2 参数
无
3 返回值
这个方法返回这个类的对象的字符串表示形式。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Class toString()方法
*/
import java.lang.*;
public class ClassDemo {
public static void main(String[] args) {
ClassDemo c = new ClassDemo();
Class cls = c.getClass();
// returns the string representation of this class object
String str = cls.toString();
System.out.println("Class = " + str);
// returns the name of the class
str = cls.getName();
System.out.println("Class = " + str);
}
}
输出结果为:
Class = class ClassDemo
Class = ClassDemo
热门文章
优秀文章