NETBEANS CONSTRUCTOR_UNO

NUEVO EJEMPLO
NETBEANS CONSTRUCTOR_UNO
import javax.swing.*;
class myclase
{
    int x;
    myclase()//inicia el constructor de mi calse
    {
        x=50;
    }
}

public class CONSTRUCTOR_1
{
    public static void main(String args[])
    {
        myclase t1=new myclase();
        myclase t2=new myclase();
        JOptionPane.showMessageDialog(null, "VALOR DE X EN T1 ES: "+t1.x);
        JOptionPane.showMessageDialog(null, "VALOR DE X EN T2 ES: "+t1.x);
    }
}

VIDEO

0 comentarios:

Publicar un comentario