“Przykład klasy Lua” Kod odpowiedzi

obiekt lua

SomeClass = { id = "some_class" }
SomeClass.__index = SomeClass
function SomeClass:Create()
    local this = {}
    setmetatable(this, SomeClass)
    return this
end

c1 = SomeClass:Create()
c2 = SomeClass:Create()

print(c1.id) -- "some_class"
print(c2.id) -- "some_class"
abdullah

Przykład klasy Lua

Car = {}

function Car.new(position, driver, model)
    local newcar = {}

    newcar.Position = position
    newcar.Driver = driver
    newcar.Model = model

    return newcar
end
Benky Lion

Odpowiedzi podobne do “Przykład klasy Lua”

Pytania podobne do “Przykład klasy Lua”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu