Constructor call constructor

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • S³awek

    Constructor call constructor

    Can one constructor of an object call another constructor of the same class?

    class foo
    {
    foo(float f, int i) // a "full" constructor
    {
    ...
    }
    foo(int i) // a "simplified " constructor
    {
    ?? a call to foo(float,int), BTW this->foo(x,i) doesn't work ??
    }
    }

    Obviously it's possible to use a base class with the "full" constructor or
    write private function (foo_init(float ,int) called via foo(float,int) and
    foo(int i) ). Nevertheless I look for an alternative solution - with a
    similar architecture to the class foo. Is it possible to call a constructor
    like a function?

    TIA

    Slawek

  • lallous

    #2
    Re: Constructor call constructor

    "S³awek" <slawek@dev.nul l> wrote in message
    news:c29gd3$8ji $1@zeus.man.szc zecin.pl...[color=blue]
    > Can one constructor of an object call another constructor of the same[/color]
    class?[color=blue]
    >
    > class foo
    > {
    > foo(float f, int i) // a "full" constructor
    > {
    > ...
    > }
    > foo(int i) // a "simplified " constructor
    > {
    > ?? a call to foo(float,int), BTW this->foo(x,i) doesn't work ??
    > }
    > }
    >
    > Obviously it's possible to use a base class with the "full" constructor or
    > write private function (foo_init(float ,int) called via foo(float,int) and
    > foo(int i) ). Nevertheless I look for an alternative solution - with a
    > similar architecture to the class foo. Is it possible to call a[/color]
    constructor[color=blue]
    > like a function?
    >
    > TIA
    >
    > Slawek
    >[/color]


    =burbmc%24lipge %241%40ID-161723.news.uni-berlin.de&rnum= 1&prev=/groups%3Fq%3
    Dlallous%2Bctor %26sourceid%3Do pera%26num%3D0% 26ie%3Dutf-8%26oe%3Dutf-8

    Also:
    "[10.3] Can one constructor of a class call another constructor of the
    same class to initialize the this object?"
    You can get the FAQ at:

    --
    Elias


    Comment

    • Alf P. Steinbach

      #3
      Re: Constructor call constructor

      * <slawek@dev.nul l> schriebt:[color=blue]
      > Can one constructor of an object call another constructor of the same class?[/color]

      This is a FAQ.

      It's always a good idea to check the FAQ before posting:

      <url: http://www.parashift.c om/c++-faq-lite/ctors.html#faq-10.3>



      [color=blue]
      > Obviously it's possible to use a base class with the "full" constructor or
      > write private function (foo_init(float ,int) called via foo(float,int) and
      > foo(int i) ). Nevertheless I look for an alternative solution.[/color]

      None such except providing default values for arguments, directly in the
      constructor code or via factory functions.

      [color=blue]
      > Is it possible to call a constructor like a function?[/color]

      So many (most C++ programmers... :-; ) have problems with the questions you
      ask above that it's near to impossible to answer this correctly without
      incurring the indignant wrath of those who have just progressed past the
      immediate basic understanding that constructors for the same class can't be
      chained in C++.

      The usual over-simplification is: "you can't call a constructor".

      This simplification serves well for novices and the 50% of programmers below
      the median skill level, and it is perhaps the rule-of-thumb you should adopt.

      A slightly less incorrect answer is: "you can't call a constructor on an
      object", and this conveys the main idea. There is no object before the
      constructor has done its job. The constructor transforms raw storage into
      a useful object.

      But also that is slightly incorrect, for you can call a constructor on
      raw storage via placement new. C++ has its roots in low-level programming
      and so provides this way to take charge. And in the standard's terminology
      raw storage is also regarded as 'object'. Nailing down just the precise
      meaning of object you can't call a constructor on is hard. But in practice
      the possibility of placement new is just that: it's simply not used, because
      there are so few situations where it could be safe or an advantage to use it.

      --
      A: Because it messes up the order in which people normally read text.
      Q: Why is top-posting such a bad thing?
      A: Top-posting.
      Q: What is the most annoying thing on usenet and in e-mail?

      Comment

      • Chris \( Val \)

        #4
        Re: Constructor call constructor


        "S³awek" <slawek@dev.nul l> wrote in message news:c29gd3$8ji $1@zeus.man.szc zecin.pl...
        | Can one constructor of an object call another constructor of the same class?
        |
        | class foo
        | {
        | foo(float f, int i) // a "full" constructor
        | {
        | ...
        | }
        | foo(int i) // a "simplified " constructor
        | {
        | ?? a call to foo(float,int), BTW this->foo(x,i) doesn't work ??

        Of course not :-).
        You can however assign a temporary object to 'this':
        *this = foo( 1.2f, i );

        | }
        | }
        |
        | Obviously it's possible to use a base class with the "full" constructor or
        | write private function (foo_init(float ,int) called via foo(float,int) and
        | foo(int i) ). Nevertheless I look for an alternative solution - with a
        | similar architecture to the class foo. Is it possible to call a constructor
        | like a function?

        You cannot call a constructor directly like a function, full stop.
        Constructors are 'invoked' upon object instantiation.

        Why do you want to do this anyway ?

        If you carefully thought out what you really want to
        do, you would probably find that initialiser lists are
        all you need.

        Cheers.
        Chris Val


        Comment

        Working...