Syntaxe : alg : Définition d'un type structuré
Type TypeStruct
| nomChamp1 : Type1
| nomChamp2 : Type2
| ...
| nomChampN : TypeN
FinType
Syntaxe : C : Définition d'un type structuré
struct TypeStruct
{
Type1 nomChamp1;
Type2 nomChamp2;
...
}; //<- point-virgule
typedef struct TypeStruct TypeStruct;
Syntaxe : C++ : Définition d'un type structuré
struct TypeStruct
{
Type1 nomChamp1;
Type2 nomChamp2;
...
}; //<- point-virgule
Syntaxe : Java : Définition d'un type structuré
class TypeStruct
{
public Type1 nomChamp1;
public Type2 nomChamp2;
...
}
Syntaxe : Python : Définition d'un type structuré
class TypeStruct:
def __init__(self):
self.nomChamp1 = valeurType1
self.nomChamp2 = valeurType2
...