lab4 1

lab4 1



public void Dodaj(object obj)

{

if (liczbaElementow == 0)

{

pierwszyElement = ostatniElement = new Element(obj);

}

else

{

ostatniElement.Następny = new Element(obj); ostatniElement = ostatniElement.Następny;

}

liczbaElementow++;

}

public object Pobierz()

{

if (liczbaElementow == 0)

{

Console.Writel_ine("Brak elementów w kolejce!"); return nuli;

}

else

{

Element tmp = pierwszyElement; pierwszyElement = pierwszyElement.Następny; liczbaElementow--; return tmp.Wartość;

}

}

public void Wypisz()

{

Element tmp = pierwszyElement; while (tmp != nuli)

{

Console.Write("{0} ", tmp.Wartość.ToString()); tmp = tmp.Następny;

}

Console.WriteLine();

>


Wyszukiwarka

Podobne podstrony:
Petent21258675031 1 U Uchwyt § Petent Operations public Uchwyt( ) public void dodaj_osobe( String a
Petent21258675031 2 B Uchwyt Operations public Uchwyt( ) public void dodaj_osobe( String a, String
41 UWAGI void dodaj(int liczba) { int zmienna - 0; zmienna ■ zmienna + liczba; printf ("Wartość
dodaj nazwiskoimie24463256637 1 : Uchwyt : Petent m Petent : ArayUst m Nazwiskoimie : May Ust :
—    Następnie należy utworzyć metodę inicjalizującą applet: public void initO
OpenGL/src/org/umk/opengl/RendererGL.jaya public void onSurfaceCreated(GL10 gl, EGLConfig konfig) {
OpenGL/src/org/umk/opengl/RendererGL.jaya public void onSurfaceChanged(GL10 gl, int szerokość, int
dr inż. Piotr Matka PROGRAMOWANIE JAVA 11 public void destroy()ii Szkielet apletu korzystający z kla
dr inż. Piotr Matka PROGRAMOWANIE JAVA 13 class MyWindowAdapter extends WindowAdapteri public void
// metody ustawiające pola obiektu (setters) public void ustawGodz(int godz) {
public void Stop 0 public void Pause () public void Resume 0 public SoundState State { get
public: int weżWart(int nPrzes){ if (nPrzes < sizeof(buf) && nPrzes > 0) return buf
133 TIF class C3 : public C1{ public: void Metoda3();}; class C4 : public C3, public C2{}; void
class C3 : public C1{ public: void Metoda3();}; class C4 : public C3, public C2{}; void

więcej podobnych podstron