Glossaire du langage algorithmique et traductions
Définition d'un type structuré

Syntaxealg : Définition d'un type structuré

Type TypeStruct

| nomChamp1 : Type1

| nomChamp2 : Type2

| ...

| nomChampN : TypeN

FinType

SyntaxeC : Définition d'un type structuré

struct TypeStruct

{

Type1 nomChamp1;

Type2 nomChamp2;

...

}; //<- point-virgule

typedef struct TypeStruct TypeStruct;

SyntaxeC++ : Définition d'un type structuré

struct TypeStruct

{

Type1 nomChamp1;

Type2 nomChamp2;

...

}; //<- point-virgule

SyntaxeJava : Définition d'un type structuré

class TypeStruct

{

public Type1 nomChamp1;

public Type2 nomChamp2;

...

}

SyntaxePython : Définition d'un type structuré

class TypeStruct:

def __init__(self):

  self.nomChamp1 = valeurType1

  self.nomChamp2 = valeurType2

  ...