java.util.Stack翻译

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

[/url] [url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview

Package

Class

Use

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Std. Ed. v1.4.2

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

SUMMARY: NESTED | FIELD | CONSTR | METHOD

DETAIL: FIELD | CONSTR | METHOD

java.util

Class Stackjava.lang.Object

java.util.AbstractCollection

java.util.AbstractList

java.util.Vector

java.util.Stack

All Implemented Interfaces: Cloneable, Collection, List, RandomAccess, Serializable public class Stack extends VectorThe Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with five operations that allow a vector to be treated as a stack. The usual push and pop operations are provided, as well as a method to peek at the top item on the stack, a method to test for whether the stack is empty, and a method to search the stack for an item and discover how far it is from the top. Stack类代表后进先出(LIFO)的栈对象。它继承自类Vector,提供了5种操作,使 vector能够作为栈处理。除了提供常规的push和pop操作外,还同时提供方法来查找栈顶项, 测试栈是否为空,查找栈中某项相对于栈顶的距离。

When a stack is first created, it contains no items. 当栈第一次被创建时,它不含任何项。

Since: JDK1.0 See Also: Serialized FormField Summary

Fields inherited from class java.util.Vector

capacityIncrement, elementCount, elementData

Fields inherited from class java.util.AbstractList

modCount

Constructor Summary

Stack()

Creates an empty Stack. 创建一个空Stack。

Method Summary

boolean

empty()

Tests if this stack is empty. 测试栈是否为空。

Object

peek()

Looks at the object at the top of this stack without removing it from the stack. 查找栈顶对象,而不从栈中移走。

Object

pop()

Removes the object at the top of this stack and returns that object as the value of this function. 移走栈顶对象,将该对象作为函数值返回。

Object

push(Object item)

Pushes an item onto the top of this stack. 向栈顶压入一个项。

int

search(Object o)

Returns the 1-based position where an object is on this stack. 返回栈中对象的位置,从1开始。

Methods inherited from class java.util.Vector

add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, )]copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, )]toArray, toString, trimToSize

Methods inherited from class java.util.AbstractList

iterator, listIterator, listIterator

Methods inherited from class java.lang.Object

finalize, getClass, notify, notifyAll, wait, wait, wait

Methods inherited from interface java.util.List

iterator, listIterator, listIterator

Constructor Detail

Stackpublic Stack()

Creates an empty Stack. 创建一个空Stack。

Method Detail

pushpublic Object push(Object item)

Pushes an item onto the top of this stack. This has exactly the same effect as: 向栈顶压入一个项。 addElement(item)

Parameters: item - the item to be pushed onto this stack. 要压入栈的项。 Returns: the item argument. item参数。 See Also: Vector.addElement(java.lang.Object)poppublic Object pop()

Removes the object at the top of this stack and returns that object as the value of this function. 移走栈顶对象,将该对象作为函数值返回。

Returns: The object at the top of this stack (the last item of the Vector object). 栈顶的对象(Vector对象的最后一项)。 Throws: EmptyStackException - if this stack is empty. 如果栈为空时抛出。peekpublic Object peek()

Looks at the object at the top of this stack without removing it from the stack. 查找栈顶对象,而不从栈中移走。

Returns: the object at the top of this stack (the last item of the Vector object). 栈顶的对象(Vector对象的最后一项)。 Throws: EmptyStackException - if this stack is empty. 如果栈为空时抛出。emptypublic boolean empty()

Tests if this stack is empty. 测试栈是否为空。

Returns: true if and only if this stack contains no items; false otherwise. 只有当栈中不含项时,返回true,否则为false。searchpublic int search(Object o)

Returns the 1-based position where an object is on this stack. If the object o occurs as an item in this stack, this method returns the distance from the top of the stack of the occurrence nearest the top of the stack; the topmost item on the stack is considered to be at distance 1. The equals method is used to compare o to the items in this stack. 返回栈中对象的位置,从1开始。如果对象o作为项在栈中存在,方法返回离栈顶最近的距离。 栈中最顶部的项被认为距离为1。equals方法用来比较o和栈中的项。

Parameters: o - the desired object. 期望对象。 Returns: the 1-based position from the top of the stack where the object is located; the return value -1 indicates that the object is not on the stack. 栈中对象的位置,从1开始。返回-1值表示对象不在栈中。[/url][url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview

Package

Class

Use

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Std. Ed. v1.4.2

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

SUMMARY: NESTED | FIELD | CONSTR | METHOD

DETAIL: FIELD | CONSTR | METHOD

Submit a bug or feature

For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航