predicate.java
来自「BOOK:Beginning Algorithms Code Example」· Java 代码 · 共 16 行
JAVA
16 行
package com.wrox.algorithms.iteration;/** * Generic interface for specifying filter criteria. * */public interface Predicate { /** * Determines if the predicate holds for a specified object. * * @param object The object to evaluate. * @return <code>true</code> if the predicate holds; otherwise <code>false</code>. */ public boolean evaluate(Object object);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?