How can i print the object from the constructor?
up vote
1
down vote
favorite
package Stats;
public class Players {
private String name;
private int RIT;
private int TIR;
private int PAS;
private int REG;
private int DEF;
private int FIS;
private int MED;
public Players (String name, int RIT, int TIR, int PAS, int REG,
int DEF, int FIS, int MED) {
this.name= name;
this.RIT = RIT;
this.TIR = TIR;
this.PAS = PAS;
this.REG = REG;
this.DEF = DEF;
this.FIS = FIS;
MEDIA = MED;
}
public static void main (String args) {
Players player1 = new Players ("aa", 5,3,7,1,7,9,8);
System.out.println(player1);
}
}
Im trying to print all the variables with println but all it does is printing "Stats.Players@14c3d7e" and if i put println(name + "n" + RIT + ....); it says i cant do it from a non static context.
How can i solve this?
constructor package println
New contributor
add a comment |
up vote
1
down vote
favorite
package Stats;
public class Players {
private String name;
private int RIT;
private int TIR;
private int PAS;
private int REG;
private int DEF;
private int FIS;
private int MED;
public Players (String name, int RIT, int TIR, int PAS, int REG,
int DEF, int FIS, int MED) {
this.name= name;
this.RIT = RIT;
this.TIR = TIR;
this.PAS = PAS;
this.REG = REG;
this.DEF = DEF;
this.FIS = FIS;
MEDIA = MED;
}
public static void main (String args) {
Players player1 = new Players ("aa", 5,3,7,1,7,9,8);
System.out.println(player1);
}
}
Im trying to print all the variables with println but all it does is printing "Stats.Players@14c3d7e" and if i put println(name + "n" + RIT + ....); it says i cant do it from a non static context.
How can i solve this?
constructor package println
New contributor
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
package Stats;
public class Players {
private String name;
private int RIT;
private int TIR;
private int PAS;
private int REG;
private int DEF;
private int FIS;
private int MED;
public Players (String name, int RIT, int TIR, int PAS, int REG,
int DEF, int FIS, int MED) {
this.name= name;
this.RIT = RIT;
this.TIR = TIR;
this.PAS = PAS;
this.REG = REG;
this.DEF = DEF;
this.FIS = FIS;
MEDIA = MED;
}
public static void main (String args) {
Players player1 = new Players ("aa", 5,3,7,1,7,9,8);
System.out.println(player1);
}
}
Im trying to print all the variables with println but all it does is printing "Stats.Players@14c3d7e" and if i put println(name + "n" + RIT + ....); it says i cant do it from a non static context.
How can i solve this?
constructor package println
New contributor
package Stats;
public class Players {
private String name;
private int RIT;
private int TIR;
private int PAS;
private int REG;
private int DEF;
private int FIS;
private int MED;
public Players (String name, int RIT, int TIR, int PAS, int REG,
int DEF, int FIS, int MED) {
this.name= name;
this.RIT = RIT;
this.TIR = TIR;
this.PAS = PAS;
this.REG = REG;
this.DEF = DEF;
this.FIS = FIS;
MEDIA = MED;
}
public static void main (String args) {
Players player1 = new Players ("aa", 5,3,7,1,7,9,8);
System.out.println(player1);
}
}
Im trying to print all the variables with println but all it does is printing "Stats.Players@14c3d7e" and if i put println(name + "n" + RIT + ....); it says i cant do it from a non static context.
How can i solve this?
constructor package println
constructor package println
New contributor
New contributor
New contributor
asked Nov 10 at 19:21
Perico
112
112
New contributor
New contributor
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Perico is a new contributor. Be nice, and check out our Code of Conduct.
Perico is a new contributor. Be nice, and check out our Code of Conduct.
Perico is a new contributor. Be nice, and check out our Code of Conduct.
Perico is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242581%2fhow-can-i-print-the-object-from-the-constructor%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown