-
Notifications
You must be signed in to change notification settings - Fork 0
/
Encapsulacion.java
68 lines (54 loc) · 1.77 KB
/
Encapsulacion.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package Intermedios;
public class Encapsulacion {
public static void main(String[] args) {
//Primer instancia de ejemplo
Vehiculo vehiculo= new Vehiculo();
vehiculo.tipo= "Sedan";
System.out.println(vehiculo.tipo);
//Acceder al color del vehiculo de la encapsulacion
vehiculo.setColor("Rojo");
System.out.println(vehiculo.getColor());
//Ejemplo del metodo estado
vehiculo.setApagado(true);
vehiculo.estado(vehiculo.isApagado());
System.out.println("\nNuevo objeto\n");
//Segunda instancia
Vehiculo moto= new Vehiculo();
moto.tipo = "Scotter";
System.out.println(moto.tipo);
moto.setColor("Negra");
System.out.println(moto.getColor());
moto.setApagado(false);
moto.estado(moto.isApagado());
}
}
class Vehiculo{
// Error provocado por la propiedad del private
//private String tipo;
public String tipo;
//Encapsulacion consiste en poder acceder a los propiedades privadas
// Por medio de sets and gets
private String color;
public void setColor(String color) {
this.color = color;
}
//El get tiene que devolver el tipo de la variable en cuestion
public String getColor(){
//El this hace referencia a la propiedad de la clase
return this.color;
}
//Encapsulacion con variables boolean
private boolean apagado;
public void setApagado(boolean apagado){
this.apagado = apagado;
}
public boolean isApagado(){
return this.apagado;
}
public void estado(boolean apagado){
if (apagado == true){
System.out.println("Vehiculo apagado");
}
else{System.out.println("Vehiculo encendido");}
}
}