- 1、本文档共2页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA.UTIL.VECTOR.SETMETHOD.PDF
JAVA.UT L.VECTOR.SET MET HOD
JAVA.UT L.VECTOR.SET MET HOD
http://www.tutorialspoint .com/java/util/vector_set .htm Copy right ©
Description
T he setintindex, Eelement method is used to replace the element at the specified position in this
Vector with the specified element.
Declaration
Following is the declaration for java.util.Vector.set method
public E set(int index,E element)
Parameters
index -- T his is the index of the element to be replaced.
element -- T his is the element to be stored at the specified position.
Return Value
T he method call returns the element that was previously stored at the specified position.
Exception
ArrayIndexOutOfBoundsException -- T his exception is thrown if the accessed index is out
of range.
Example
T he following example shows the usage of java.util.Vector.set method.
package com .tutorialspoint;
import java.util.Vector;
public class VectorDemo {
public static void main(String ] args) {
// create an empty Vector vec with an initial capacity of 4
Vector vec = new Vector(4);
// use add() method to add elements in the vector
vec .add(4);
vec .add(3);
vec .add(2);
vec .add(1);
// set 15 at 2nd index position
vec .set(2,15);
// let us print all the elements available in vector
System .out.println(Added numbers are :- );
for (Integer number : vec) {
System .out.println(Number = + number);
}
}
}
Let us compile and run the above program, this will produce the following result.
Added numbers are :-
Number = 4
Number = 3
Number = 15
Number = 1
Loading [MathJax ]/jax/output/ HT ML-CSS/jax .js
您可能关注的文档
- InterventionProgram.PDF
- InthisLecture.PDF
- INTRA-DAYSETTLEDPOSITIONREPORT.PDF
- IntroducingClickOnceTheNewApplicationDeployment.ppt
- Introductionto.PDF
- IntroductiontoIS-IS.ppt
- IntroductiontoSatisfiabilityModuloTheories(SMT).ppt
- InvescoGlobalRealEstateFund.PDF
- Ios app 360商城上线,360商城实现pc端和移动端的资源整合.pptx
- IOWMENEWSLETTER.doc
最近下载
- 带状疱疹性神经痛的护理措施.pptx
- 米什金货币金融学第11版.pdf
- 2024行政执法人员执法资格证考试必考题库和答案.pptx
- 口风琴校本课程(含起源、分类、好处、教学纲要).docx VIP
- Unit+6+The+Media+Lesson+3+The+Advertising+Game+教学设计 高二上学期英语北师大版(2019)选择性必修第二册.docx VIP
- 北Unit+6+The+Media+Writing+Workshop+教学设计 高二上学期英语北师大版(2019)选择性必修第二册.docx VIP
- Unit+6+The+Media+Reading+Club+教学设计 高二上学期英语北师大版(2019)选择性必修第二册.docx VIP
- 汽车喷漆/烤漆房使用说明书.pdf VIP
- Unit+6+The+Media+Lesson+2+Questions+about+Media+教学设计 高二上学期英语北师大版(2019)选择性必修第二册.docx VIP
- Unit+6+The+Media+Topic+Talk+教学设计 高二上学期英语北师大版(2019)选择性必修第二册.docx VIP
文档评论(0)