Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » auto_ptr auf abgeleitete Klassen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
08.04.2003, 17:34 Uhr
MarcDuerner



ich will auto_ptr für folgendes benutzen:

class A;
class B : public A;

dann später:
auto_ptr<A> pA( new B() );

krieg aber compiler error. Wie kann man das mit auto_ptr hinkriegen?
Oder geht das nicht?

Gruß,
Marc
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
08.04.2003, 18:26 Uhr
virtual
Sexiest Bit alive
(Operator)


Sollte gehen, was ist denn die Fehlermeldung? - Jedenfalls compilert bei mir folgendes:

C++:
#include <memory>

class A
{
};

class B: public A
{
};

void f()
{
    std::auto_ptr<A> pa(new B());
}


gcc 2.95, Linux
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
08.04.2003, 18:43 Uhr
MarcDuerner



ich bentutze "using namespace std;" und der auto_ptr geht fuer

auto_ptr<A> pa(new A());

ja auch

Marc
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: