search(Object o) 方法在 java 中的作用是什么?
search(Object o) 方法用于返回对象在此栈中的 1 基位置。
示例
import java.util.*; public class StackDemo { public static void main(String args[]) { Stack st = new Stack(); st.push("Java"); st.push("Source"); st.push("code"); System.out.println("Searching 'code' in stack: "+st.search("code")); } }
输出
Searching 'code' in stack:
广告