Futurebasic/语言/参考/fnaddress
外观
dim as pointer functionAddress functionAddress = @fn FunctionName
返回一个内存地址,该地址可用于访问由 FunctionName
指定的函数。FunctionName
必须是在源代码的早期位置定义或原型化的函数的名称(在 local fn
、def fn <expr>
或 def fn <prototype>
语句中)。
@fn
返回的地址可以在 def fn using
语句、fn using
语句/函数中使用,或者用于指定回调函数(例如 Carbon 事件处理程序)。
没有特别的注意事项。