forked from lcsm-ecomp/LPF2022.1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExemploClasse.kt
50 lines (40 loc) · 1.11 KB
/
ExemploClasse.kt
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
class Ponto(val x:Float, val y:Float)
class Rect(val p1:Ponto, val p2:Ponto)
open class Pessoa(val nome:String, val idade:Int) {
open fun imprimeM() {
println("pessoa $nome idade $idade")
}
}
open class Estudante(nome:String, idade:Int, val curso:String)
: Pessoa(nome,idade) {
override fun imprimeM() {
println("estudante $nome idade $idade que faz $curso")
}
}
class EstudantePos(nome:String, idade:Int, curso:String,val grad:String)
: Estudante(nome,idade,curso) {
}
fun imprimeP(p:Pessoa) {
if (p is Estudante) {
println("estudante ${p.nome} idade ${p.idade} que faz ${p.curso}")
} else
println("pessoa ${p.nome} idade ${p.idade}")
}
fun imprimeP2(p:Pessoa) {
when (p) {
is Estudante -> println("estudante ${p.nome} idade ${p.idade} que faz ${p.curso}")
else -> println("pessoa ${p.nome} idade ${p.idade}")
}
}
val p = Pessoa("joao",25)
val e = Estudante("maria",20,"Computação")
fun main2() {
p.imprimeM()
imprimeP(p)
e.imprimeM()
imprimeP(e)
}
var p2 : Pessoa? = null//Pessoa("pedro",30)
fun main() {
println(p2?.nome)
}