You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/ex_022_003_Generics_syntaxe/Program.cs

120 lines
3.7 KiB

// ========================================================================
//
// Copyright (C) 2016-2017 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : Program.cs
// Author : Marc Chevaldonné
// Creation date : 2016-09-27
//
// ========================================================================
using System;
using static System.Console;
namespace ex_022_003_Generics_syntaxe
{
/// <summary>
/// C# propose 2 façons d'écrire du code "réutilisable" à travers des types différents :
/// l'utilisation de l'héritage ou l'utilisation du la généricité.
/// L'héritage propose la réutilisabilité à travers un type de base, alors que la généricité
/// se base sur un "patron" (template).
/// </summary>
class Program
{
/// <summary>
/// 1er exemple : un tableau de "choses" (inconnues à l'avance)
/// </summary>
/// <typeparam name="T">choses contenues par le tableau</typeparam>
public class Tableau<T>
{
/// <summary>
/// taille du tableau
/// </summary>
public int Size
{
get { return mSize; }
}
int mSize = 0;
/// <summary>
/// tableau d'object
/// </summary>
T[] mData = new T[0];
/// <summary>
/// ajoute un objet à la fin du tableau
/// </summary>
/// <param name="objet">objet à rajouter</param>
public void Push(T objet)
{
mSize++;
T[] data = new T[mSize];
mData.CopyTo(data, 0);
data[mSize - 1] = objet;
mData = data;
}
/// <summary>
/// indexer en lecture seule pour lire les éléments du tableau
/// </summary>
/// <param name="index">index dans le tableau</param>
/// <returns>la valeur à cet index</returns>
public T this[int index]
{
get
{
if (index < 0 || index >= mSize)
{
throw new IndexOutOfRangeException();
}
return mData[index];
}
}
}
public class Nounours
{
public Nounours(string nom)
{
Nom = nom;
}
public string Nom
{
get;
private set;
}
}
static void Main(string[] args)
{
//un tableau d'entiers
Tableau<int> tab_int = new Tableau<int>();
tab_int.Push(10);
tab_int.Push(20);
tab_int.Push(30);
tab_int.Push(40);
tab_int.Push(50);
for (int i = 0; i < tab_int.Size; i++)
{
WriteLine(tab_int[i]);
}
WriteLine("fin\n");
//un tableau de nounours
Tableau<Nounours> tab_nounours = new Tableau<Nounours>();
tab_nounours.Push(new Nounours("Hello Kitty"));
tab_nounours.Push(new Nounours("Pokemon"));
tab_nounours.Push(new Nounours("Pokoyo"));
tab_nounours.Push(new Nounours("Tigrou"));
tab_nounours.Push(new Nounours("PussInBoots"));
for (int i = 0; i < tab_nounours.Size; i++)
{
WriteLine(tab_nounours[i].Nom);
}
WriteLine("fin\n");
}
}
}