Advertisement
nitsud

Untitled

Dec 8th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. Class Vector{
  2. Object[] a = new Object[10];
  3.     public toString(){
  4.         a[0].toString();
  5. }
  6. }
  7.  
  8. Class Vector{
  9. Int[] a = new Int[10];
  10.     Public Array toArray(){
  11.     Int[] newA = new Int[10];
  12. System.arraycopy( a, 0, newA, 0, 10);
  13.     return newA;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement