What is the difference between of object and reference to?

后端 未结 2 840
离开以前
离开以前 2020-12-12 17:06

What is the difference between

TFuncOfIntToString = reference to function(x: Integer): string; 

and

TFuncOfIntToString = fu         


        
2条回答
  •  一向
    一向 (楼主)
    2020-12-12 17:28

    The first is anonymous method, the second is ordinary method.

提交回复
热议问题