[swift] 20. struct 메소드

RudinP·2023년 9월 22일
0

Study

목록 보기
41/258
  • struct도 메소드를 멤버로 가질 수 있다.
struct Friend{
	var name: String
    var age: Int
    
    func myAge() -> Int{
    	return self.age
    }
}
profile
iOS 개발자가 되기 위한 스터디룸...

0개의 댓글