Home > Java > javaTutorial > body text

Java Example - Rotation Vector

黄舟
Release: 2017-02-04 10:06:15
Original
1429 people have browsed it

The following example demonstrates the use of the swap() function to rotate a vector:

/*
 author by w3cschool.cc
 Main.java
 */import java.util.Collections;import java.util.Vector;public class Main {
   public static void main(String[] args) {
      Vector<String> v = new Vector();
      v.add("1");
      v.add("2");
      v.add("3");
      v.add("4");
      v.add("5");
      System.out.println(v);
      Collections.swap(v, 0, 4);
      System.out.println("旋转后");
      System.out.println(v);
   }}
Copy after login

The output result of running the above code is:

1 2 3 4 5 
旋转后
5 2 3 4 1
Copy after login

The above is the Java example - the content of the rotation vector, For more related content, please pay attention to the PHP Chinese website (www.php.cn)!




Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!