Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想知道是否有一个标准接口,其签名类似于这个:
public interface I<V> { V getV(); }
或者这个:
public interface I<V> { void setV(V v); }
一种选择是自己制作,扩展标准接口Callable<V>。这允许您在任何可以使用 Callable 的地方使用它。
Callable<V>
public interface NoThrowCallable<T> extends java.util.concurrent.Callable<T> { T call(); }