Xây dựng phương pháp của bạn để chấp nhận nó-
public <T> void printClassNameAndCreateList(Class<T> className){
//example access 1
System.out.print(className.getName());
//example access 2
ArrayList<T> list = new ArrayList<T>();
//note that if you create a list this way, you will have to cast input
list.add((T)nameOfObject);
}
Gọi phương thức-
printClassNameAndCreateList(SomeClass.class);
Bạn cũng có thể hạn chế loại lớp, ví dụ, đây là một trong những phương thức từ thư viện tôi đã tạo-
protected Class postExceptionActivityIn;
protected <T extends PostExceptionActivity> void setPostExceptionActivityIn(Class <T> postExceptionActivityIn) {
this.postExceptionActivityIn = postExceptionActivityIn;
}
Để biết thêm thông tin, tìm kiếm Reflection và Generics.