Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class Person with 2 fields: Name and Age and I want to declare instance of this class inside the class like this.

public class Person implements ToCSV {

private String name;
private int age;

public Person(String name, int age) {
    this.name = name;
    this.age = age;
}

public Person(){

}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}

public int getAge() {
    return age;
}
public void setAge(int age) {
    this.age = age;
}


Person p1 = new Person("Patrick", 24);
Person p2 = new Person("Bernard", 20);
Person p3 = new Person("Lam", 23);

}

My question is: Can I take all the value of object p1, p2, p3 by the general way?

My goal is save all object's data to a file like txt... The file will have something like this: "Patrick - 24, Bernard - 20, Lam - 23" and I want something so general for automatically generate the file txt. So I have to try to retrieve the object of class

I tried to use Java Reflection. It recognized p1, p2, p3 like the Fields but I cannot access to the value of this object. Any idea? Thanks for your attention!

share|improve this question
Are you asking us how to find a way to store p1, p2 and p3 to a file? Or do you really intent to have them as attributes of the Person class? – jlordo Dec 4 '12 at 0:20
I want to retrieve the object (here is p1, p2, p3) which is declared inside a class. I tried to use the reflection but I think it's not worked. – Dang Thai Lam Dec 4 '12 at 1:38

1 Answer

Interestingly, the code you posted will produce a StackOverflowError - each constructor call to the first constructor will try to produce 3 more Person instances. Did you mean to make the Person fields static?

If you did, you could do this:

for (Field f : Person.class.getDeclaredFields()) {
    try {   
        System.out.println(((Person)f.get(null)).getName());
    } catch (IllegalAccessException e) {
        // do something
    }
}
Patrick
Bernard
Lam

I generally try to persuade people to look for a method other than reflection if it's at all possible. In your case, you might be able to store p1..p3 in an array and then loop through the array.

share|improve this answer
I don't think he wants his 3 persons static. I think he wants them as local variables in a main method for testing purposes. And to access their attribute values he can just use the getters. No need for reflection here. – jlordo Dec 4 '12 at 0:16
@jlordo Are you sure? The OP talked about these variables as if he was sure they were supposed to be class fields. Anyway, I'll edit this if he says this isn't what he meant. – A. R. S. Dec 4 '12 at 0:19
no. in fact, I just wanna make some new instances of the class and I will use the value of these instance to write a file .txt. For example, the file'll have "Patrick - 24, Bernard - 20, Lam - 23". It doesn't matter where I put the declaration instance but I want to put it in the class who define the instance cuz I think it make more simple. Any suggestion is interested ! thanks ! By the way, @A.R.S. : the code is not worked. there is no method getName() when we make f.get(null) :) – Dang Thai Lam Dec 4 '12 at 1:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.