Por algum motivo está aparecendo erro na parte :
clientes[i] = new Cliente();
A ide informa isso :
Exception in thread "main" java.lang.Error: Unresolved compilation problem: No enclosing instance of type Aula2 is accessible. Must qualify the allocation with an enclosing instance of type Aula2 (e.g. x.new A() where x is an instance of Aula2). ".
Não sei como resolver.
public class Aula2 {
public static void main(String[] args) {
Cliente[] clientes = new Cliente[10];
for (int i=0; i<clientes.length; i++) {
clientes[i] = new Cliente();
clientes[i].nome = "mario";
}
for(Cliente c: clientes) {
System.out.println(c.nome);
}
}
class Cliente{
String nome;
}
}