Table of Contents

Travaux pratiques du cours INFO-H-405

Références

Références Web

Séance 1

Séance 2

Comment passer par référence un objet temporaire ?

complex test(){
  return complex();
}
 
void test2(const complex& c){
  cout << c << endl;
}
 
int main ()
{
 
  test2(test());
  return EXIT_SUCCESS;
}

L'argument doit être constant! (voir Temporary Objects pour plus d'information)

Séance 3

Prérequis

Enoncés

Corrigés