This is the class and it's constructor that I made. No problems while compiling.
public class Usuario
{
private String usuario="a";
private String contrasena="a";
private String nombre="a";
private String apellido="a";
private int dni=0;
private int edad=0;
public Usuario (String usuario, String contrasena, String nombre, String apellido, int dni, int edad)
{
this.usuario=usuario;
this.contrasena=contrasena;
this.nombre=nombre;
this.apellido=apellido;
this.dni=dni;
this.edad=edad;
}
And this is my main code where I use the constructor.
public class userTest
{
public static void main (String args[])
{
Usuario philip;
philip=new Usuario (user987, pass123, Philip, Fry, 11000111, 21);
}
}
When compiling this part, the javac shows that error.