Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,859 questions

51,780 answers

573 users

How to copy char array into another in Java

2 Answers

0 votes
// public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
 
public class Example {
    public static void main(String[] args) {
              
        char[] src = { 'a', 'b', 'c', 'd', 'e', 'f', 'g'};
        char[] dest = new char[7];
  
        System.arraycopy(src, 0, dest, 0, src.length);
         
        for (char ch : dest) 
            System.out.println(ch);
    }
}
 
 
 
/*
run:
  
a
b
c
d
e
f
g
  
*/

 



answered Jan 16, 2016 by avibootz
edited Aug 15, 2022 by avibootz
0 votes
// public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
 
public class Example {
    public static void main(String[] args) {
              
        char[] src = { 'a', 'b', 'c', 'd', 'e', 'f', 'g'};
        char[] dest = new char[src.length];
  
        System.arraycopy(src, 0, dest, 0, src.length);
         
        for (char ch : dest) 
            System.out.println(ch);
    }
}
 
 
 
/*
run:
  
a
b
c
d
e
f
g
  
*/

 



answered Jan 16, 2016 by avibootz
edited Aug 15, 2022 by avibootz

Related questions

1 answer 194 views
2 answers 169 views
169 views asked Aug 15, 2022 by avibootz
1 answer 128 views
1 answer 142 views
142 views asked Aug 15, 2022 by avibootz
1 answer 188 views
1 answer 108 views
...