카테고리

  • 안드로이드
  • IOS
  • MFC
  • JAVA
  • AWS
  • LAMP
  • 여행&사진
  • 이런저런생활
  • 2016년 11월 26일 토요일

    [IOS] Swift3 Class - Object 개념


    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()

    댓글 없음 :

    댓글 쓰기