Ruang penulis
← Kembali ke jurnal
Reflection

How do I get information regarding class name?

package org.kodejava.lang.reflect; import java.util.Date; public class ClassNameDemo { public static void main(String[] args) { Date date = new Date(); // Gets the Class of the date instance. Class<?> clazz = date.getClass(); // Gets the name of the class. String name = clazz.getName(); System.out.println("Class name : " + name); // Gets the canonical name of the […]

DWayan · 11 Des 2010 · 1 menit baca

Artikel oleh Wayan · Sumber: Kode Java ↗

Terjemahan artikel ini belum tersedia. Isi asli ditampilkan.

package org.kodejava.lang.reflect;

import java.util.Date;

public class ClassNameDemo {
    public static void main(String[] args) {
        Date date = new Date();

        // Gets the Class of the date instance.
        Class<?> clazz = date.getClass();

        // Gets the name of the class.
        String name = clazz.getName();
        System.out.println("Class name     : " + name);

        // Gets the canonical name of the class.
        String canonical = clazz.getCanonicalName();
        System.out.println("Canonical name : " + canonical);

        // Gets the simple name of the class.
        String simple = clazz.getSimpleName();
        System.out.println("Simple name    : " + simple);
    }
}

Here are the information printed out by the program:

Class name     : java.util.Date
Canonical name : java.util.Date
Simple name    : Date
← Jelajahi catatan lainnya