import UIKit
//** Class and Object
class FastCar {
var topSpeed: Int
//** 初期化関数
init (topSpeed: Int) {
self.topSpeed = topSpeed
}
func GetTopSpeed () -> Int {
//** selfはクラス内の変数を選択する時使用
return self.topSpeed
}
}
//** Class 宣言
var myCar = FastCar(topSpeed: 210)
myCar.GetTopSpeed()
var ferrari = FastCar(topSpeed: 220)
ferrari.GetTopSpeed()
댓글 없음 :
댓글 쓰기