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,907 questions

51,839 answers

573 users

How to return String array from method in Java

1 Answer

0 votes
import java.util.Arrays;

public class MyClass {
    public static String[] getArray() {
        String[] array = {"java", "c", "c++", "php"};
        return array;
    }
    public static void main(String args[]) {
        String[] array = getArray();

        System.out.println(Arrays.toString(array));
        
        for (int i = 0; i < array.length; i++) { 
            System.out.println(array[i]);  
        }  
    }
}




/*
run:
     
[java, c, c++, php]
java
c
c++
php
     
*/

 



answered Oct 6, 2023 by avibootz

Related questions

1 answer 89 views
2 answers 187 views
187 views asked May 29, 2019 by avibootz
3 answers 285 views
3 answers 216 views
1 answer 130 views
130 views asked Jul 25, 2019 by avibootz
4 answers 190 views
...