Matrix Strings

-1

In an exercise in the book "use the java head", it asks to declare 3 arrays of string, but when I put the code in the ide it gives an error of incompatible types string to String [] does anyone know why ???

package exercicios;

/**
 *
 * @author DANIEL
 */
public class Exercicios {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
       String[] lista1 =  ("24/7", "Varias Camadas","B-to-B","Todos ganham","front-end","baseado na web","Difundido");

       String[] lista2 = ("habilitado","adesivo","valor agregado","orientado","central","distribuido","agrupado");

       String[] lista3 = ("processo","ponto máximo","solução","arquitetura","habilitação no núcleo","estrátegia");

       int n1 = lista1.length;
       int n2 = lista2.length;
       int n3 = lista3.length;

       int rand1 = (int) (Math.random() * lista1);
    }

}
    
asked by anonymous 20.09.2018 / 01:58

1 answer

0

Array initialization must be done with braces, not parentheses.

Declare like this:

String[] lista1 = {"24/7", "Varias Camadas","B-to-B","Todos ganham","front-end","baseado na web","Difundido"};

 String[] lista2 = {"habilitado","adesivo","valor agregado","orientado","central","distribuido","agrupado"};

 String[] lista3 = {"processo","ponto máximo","solução","arquitetura","habilitação no núcleo","estrátegia"};
    
20.09.2018 / 02:17