Commit c68a49e6 by Szeberényi Imre

const_iterator hiba javítás + typo

parent 821e3d2f
...@@ -137,12 +137,12 @@ public: ...@@ -137,12 +137,12 @@ public:
} }
/// indirekció /// indirekció
T& operator*() { T& operator*() const {
if (idx != p->siz) return p->t[idx]; if (idx != p->siz) return p->t[idx];
else throw std::runtime_error("Hibas indirekcio"); else throw std::runtime_error("Hibas indirekcio");
} }
/// Szelekció pointerrel (nyil). Címet kell, hogy adjon. /// Szelekció pointerrel (nyíl). Címet kell, hogy adjon.
T* operator->() { T* operator->() {
return &operator*(); return &operator*();
} }
......
...@@ -83,7 +83,7 @@ int main() { ...@@ -83,7 +83,7 @@ int main() {
/// intarr0-ból létrehozzuk az intarr1-et /// intarr0-ból létrehozzuk az intarr1-et
Array<int, 100> intarr1(intarr0.begin(), intarr0.end()); Array<int, 100> intarr1(intarr0.begin(), intarr0.end());
/// Kiírjuk az elemeket. /// Kiírjuk az elemeket.
PrintArray("\bintarr1", intarr1); PrintArray("\nintarr1", intarr1);
#endif // ELKESZULT >= 14 #endif // ELKESZULT >= 14
#if ELKESZULT >= 15 #if ELKESZULT >= 15
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment