taille d'un tableau en Java ?

taille d'un tableau en Java ? - Java - Programmation

Marsh Posté le 14-03-2004 à 23:52:21    

j'ai une petite question toute bete en java :
public static void main (String[] args)
 
Comment faire pour savoir si la personne qui lance le pgm le lance bien avec 2 arguments ? (args[0] et args[1])
 
 :hello:

Reply

Marsh Posté le 14-03-2004 à 23:52:21   

Reply

Marsh Posté le 15-03-2004 à 00:02:38    

args.length


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
Reply

Marsh Posté le 15-03-2004 à 00:26:23    

catch (IndexOfOutBoundsException ex) [:joce]


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
Reply

Marsh Posté le 15-03-2004 à 00:31:13    

http://java.sun.com/docs/books/jls [...] html#64347


---------------
trainoo.com, c'est fini
Reply

Marsh Posté le 15-03-2004 à 08:29:03    

public static void main(String [] args) {
  if (args.length > 2)
  System.exit(0);
}


Message édité par dem0ntibul le 15-03-2004 à 13:48:43
Reply

Marsh Posté le 15-03-2004 à 08:38:04    

dem0ntibul a écrit :

public static void main(String [] args) {
  if (args.length < 2)
  System.exit(0);
}


 
Ptain super le code. Si ca a 0 ou 1 arguments le programme s'arrete simplement sans donner d'explications. Si tu passe 24 arguments, aucun problème [:mlc]
 
j'espère que tu ne fais pas d'interfaces utilisateurs [:joce]


---------------
Just because you feel good does not make you right
Reply

Marsh Posté le 15-03-2004 à 08:41:49    

dem0ntibul a écrit :

public static void main(String [] args) {
  if (args.length < 2)
  System.exit(0);
}


 
[:halm] enculé d'utilisateurs, il va comprendre sa douleur....


Message édité par uriel le 15-03-2004 à 08:42:30

---------------
IVG en france
Reply

Marsh Posté le 15-03-2004 à 08:42:46    

Avec un a : [:halm]


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
Reply

Marsh Posté le 15-03-2004 à 08:44:16    

Taiche a écrit :

Avec un a : [:halm]


 
edited :O


---------------
IVG en france
Reply

Marsh Posté le 15-03-2004 à 13:44:28    

disoulé
 
je sors !


Message édité par dem0ntibul le 15-03-2004 à 13:48:52
Reply

Marsh Posté le 15-03-2004 à 13:44:28   

Reply

Marsh Posté le 15-03-2004 à 22:28:06    

merci pour vos réponse :)  
lol

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed