-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
invoke
[ ɪn'voʊk ] v. 求助于 / 援引 / 祈求 / 引起
在编程中,我们把它翻译成"调用", 调用一个函数。
Java -- JSL
Instance methods are invoked on instances of classes.
实例方法要在实例对象中才能被调用,这是和静态方法对应的。
Objects can declare a
finalizemethod that will be invoked before the objects are discarded by the garbage collector.
一个对象的finalize方法会在这个对象被垃圾收集器处理前调用。
All methods of class
Objectmay be invoked on an array.
在Java中,所有的数组都是对象,拥有Object类上的所有的实例方法。
invocation
[ ˌɪnvə'keɪʃn ] n. 引用 / 祈祷 / 符咒 / 文件调取
method invocation: 方法调用
Reactions are currently unavailable