[루아] Lua에서 .과 :의 차이(?) + OOP
http://lua-users.org/wiki/ColonForMethodCall 일반적으로인스턴스 메소드는 : 콜론을 사용하여 호출한다.클래스나 팩토리 매소드, 필드를 접근할 때는 . 을 주로 사용한다. OOP느낌으로?https://github.com/ElementalKiss/Lua/blob/master/OopExample.lua 12345678910111213141516171819202122232425262728293031323334353637-- Meta ClassRectangle = {area = 0, length = 0} -- Base Class function Rectangle:New(cpyRect,length)-- copy constructure? newRect = cpyRect or {} s..
2015.12.17