以下是文档中的原话:
public Object elementAt(int index)
Returns the component at the specified index.
****
This method is identical in functionality to the get method (which is part of the List interface).
****
说明这两个函数功能是一样的,只不过get是Vector从父类List中继承过来的方法,elementAt是Vector自己的方法,看起来更直观!