Brightsign BrightScript 3.0 Reference Manual Uživatelský manuál Strana 51

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 75
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 50
46
Anonymous Functions
A function without a name declaration is considered anonymous.
Example: The following is a simple anonymous function declaration.
myfunc=function (a, b)
Return a+b
end function
print myfunc(1,2)
Example: Anonymous functions can also be used with associative-array literals.
q = {
starring : function(o, e)
str = e.GetBody()
print "Starring: " + str
toks = box(str).tokenize(",")
for each act in tok
actx = box(act).trim()
if actx <> "" then
print "Actor: [" + actx + "]"
o.Actors.Push(actx)
endif
end for
return 0
end function
}
Zobrazit stránku 50
1 2 ... 46 47 48 49 50 51 52 53 54 55 56 ... 74 75

Komentáře k této Příručce

Žádné komentáře