Home  >  Article  >  Java  >  Java Example - Rotation Vector

Java Example - Rotation Vector

黄舟
黄舟Original
2017-02-04 10:06:151367browse

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 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);
   }}

The output result of running the above code is:

1 2 3 4 5 
旋转后
5 2 3 4 1

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




Statement:
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