I have a below class and i need to get field name from getter method using java reflection.
Is it possible to get field name or property name using getter method?
class A {
private String name;
private String salary;
// getter and setter methods
}
My questions is: can i get field/property name by getter method? If I use getName(), can I get name property? I need name property but not its value. Is it possible through java reflection?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…