Bonjour j essai d utilise enu de 1.5 pour la premiere fois
j obtiens une erreeur de compilation
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 import java.text.DateFormat; import java.text.SimpleDateFormat; /** * Cette interface contient les constantes générales qui s'applique de façon globale dans l'application, peu importe la * situation. * * @author clerchr */ public interface Constants { //~ Instance fields ================================================================================================ public static final String CONFIG_PROPERTIES_FILENAME = "/resources/config.properties"; public static String cheminFichier = "C:\\facturation\\"; public static String cheminFichierArchive = "C:\\facturation\\archive\\"; String EMPTY_STRING = ""; public static final DateFormat dateFormat = new SimpleDateFormat("MMddyyyy"); public static final SimpleDateFormat yyyyMMddkkmmssFormat = new SimpleDateFormat("yyyyMMddkkmmss"); public static final Integer LOW$VALUE = new Integer(0); public static final Integer HIGH$VALUE = new Integer(255); public static final Integer MAX$GROUPEE1 = new Integer(22); public static final Integer MAX$GROUPEE2 = new Integer(2); enum Couleur = {COEUR, PIQUE, CARREAU, TREFLE}; enum indice= {1, 2, 3, 4};
Erreur de syntaxe sur le sème "=", supprimez ce sème tools Constants.java ligne 33 1234904889391 11223
je comprends pas le egal n a pas ca place merci d avance
Partager