Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What does the colon do when defining a function?

Asked by 6 years ago

I don't remember where I saw this so I can't necessarily write the script correctly, but I do remember seeing a colon in one of a script that a friend of mine wrote a while back.

1local function functionName:example1()
2 
3end
4 
5local function functionName:example2()
6 
7end

What does this do and how could I use this? Thanks in advanced.

2 answers

Log in to vote
4
Answered by 6 years ago
Edited 4 years ago

Characteristic


The difference between a colon in a function and a period in a function is that the colon has an implicit self parameter while the period doesn't

For example, if it did this:

1local tbl = {}
2 
3function tbl.Foo ()
4    print(self)
5end
6 
7tbl.Foo()

The last line would print nil, but alternatively, if I did:

1local tbl = {}
2 
3function tbl:Foo ()
4    print(self)
5end
6 
7tbl:Foo()

The last line prints table tbl, to test this yourself, you can run this line of code after it to verify:

1print(tbl)

Object Oriented Programming


The main use for a colon in the definition of a function is for OOP, or Object Oriented Programming, more specifically gaining access to the object itself without having to send it as an argument.

It's primary use is being an essential part for the inheritance of methods (essentially functions declared with a :)

01function Account:new (name)
02    local o = {name=name}
03    setmetatable(o, self)
04    self.__index = self
05    return o
06end
07 
08function Account:deposit (v)
09    self.balance = self.balance + v
10    print(self)
11end
12 
13local a =  Account:new("Joe")
14a:deposit(24)
15print(a)
16print(a.balance)

As you can see in the example, the print self and print a lines both print the same thing, as I am calling the deposit method from account a, and not any other table that contained / inherited that method.

Why this inheritance of methods happens is due to the properties of the __index metamethod, which is a whole other can of worms.

References

oop in lua pil

__index metamethod


Hopefully this helped!

0
This deserves to be te accepted answer. Accepting. User#24403 69 — 6y
Ad
Log in to vote
1
Answered by
blockmask 374 Moderation Voter
6 years ago
Edited 6 years ago

I'm pretty sure functionName is a table, and example..x is the function name.

For example, if you try to run the script below:

1local function functionName:ex1()
2    print("2s")
3end

the colon would be underlined red cause it's not a valid function name, and expects a paranthesis. Same thing with regular functions:

1function functionName:ex2()
2    print("1s")
3end

Except functionName would be nil unless it's a table, like this:

1local TestingTable = {}
2 
3function TestingTable:Example1()
4    return "Example1"
5end
6 
7print(TestingTable.Example1)

But for some reason, local functions can't access tables from the server(This only happens to the name)

0
I might have said some things wrong, but at the end it turns out to be `function table:functionName` blockmask 374 — 6y
0
I had a similar idea but thank u for clarifying! Marmalados 193 — 6y
0
You're welcome! :D and thank you for accepting this answer blockmask 374 — 6y

Answer this question