Si encuentras algo que te causa duda puedes dejarlo en la sección de comentarios y te responderemos lo mas rápido que podamos.
Ejemplo 1: Java se establece
classEmploy
public String name;//name of the employ
public String getName()//Get the name
return name;
public String setName(String newName)//Set the name
this.name = newName;
Ejemplo 2: captador de Java
public getValue()return value;
Ejemplo 3: métodos Getter y Setter
import java.util.Scanner;classStudent
private String name;
private int age;
Student()
this.name ="Rama";
this.age =29;
Student(String name,int age)
this.name = name;
this.age = age;
public void display()
System.out.println("name: "+this.name);
System.out.println("age: "+this.age);
public classAccessData
public static void main(String args[])//Reading values from user
Scanner sc = new Scanner(System.in);
System.out.println("Enter the name of the student: ");
String name = sc.nextLine();
System.out.println("Enter the age of the student: ");int age = sc.nextInt();
Student obj1 = new Student(name, age);
obj1.display();
Student obj2 = new Student();
obj2.display();
Sección de Reseñas y Valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)