java - 定义方法时'of'关键字的用法

时间:2013-12-27 01:15:21

标签: java keyword reactor

在Reactor代码中,我可以看到类似

的内容
/**
 * Create a {@link Tuple1} with the given object.
 *
 * @param t1   The first value in the tuple.
 * @param <T1> The type of the first value.
 * @return The new {@link Tuple1}.
 */
public static <T1> Tuple1<T1> of(T1 t1) {
    return new Tuple1<T1>(t1);
}

这个'''关键字是什么?

1 个答案:

答案 0 :(得分:2)

您看到的不是新的of关键字。它实际上是方法的名称,即使它可能看起来不像。