Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a C# programmer trying to muddle through C++ to create a Windows Forms Application.
I have a Windows Form that makes use of a user-created class. Basically I'm trying to use a constructor that takes parameters, but my form won't let me initialize the object with parameter. Here's the code, hopefully somebody can explain the problem to me because I'm completely baffled...

Here's my header file: BankAcct.h

public ref class BankAcct
{
    private:
        int money;

    public:
        BankAcct();
        BankAcct(int);
        void Deposit(int);
        void GetBalance(int&);
};

And my definition file: BankAcct.cpp

#include "StdAfx.h"
#include "BankAcct.h"

BankAcct::BankAcct()
{
    money = 0;  
}
BankAcct::BankAcct(int startAmt)
{
    money = startAmt;
}
void BankAcct::Deposit(int depAmt)
{
    money += depAmt;
}
void BankAcct::GetBalance(int& balance)
{
    balance = money;
}

And finally my main form. Won't copy the whole thing, of course, but I'm trying to declare the new bank account object, and start it with a balance of say $50.

private:
    BankAcct myAccount(50);    //does not work!  WHY??

//private:
  //BankAcct myAccount;    //works

then in the form constructor my code is this:

public:
    frmBank(void)
    {
        InitializeComponent();
        int bal;
        myAccount.GetBalance(bal);
        lblBankBalance->Text += Convert::ToString(bal);
    }

I've included the BankAcct.h file at the top of my frmBank.h, what else am I doing wrong here? It works great if I use the default constructor (the one that starts the bank balance at zero). I get the following error messages:

error C2059: syntax error: 'constant'

and

error C2228: left of '.GetBalance' must have class/struct/union

Thank you for any and all help on this one!!

share|improve this question
This is C++/cli right? Not C++? If you don't know the difference: C++, C++/cli – Benjamin Lindley Jun 3 '12 at 4:31
Yes, C++/CLI. In Visual Studio 2010. – Some Girl Jun 3 '12 at 4:41

2 Answers

up vote 1 down vote accepted

C#-style initialization does not work in C++. You need to put initializers in the initialization section of your constructor (i.e. between : and the opening brace { of the constructor:

public:
    MyForm() : myAccount(50) {
        // Your constructor
    }
private:
    BankAcct myAccount;

The way you have it now, myAccount is not defined as BankAcct, so calls of GetBalance do not compile either.

share|improve this answer
Tried it and it worked, but I have never seen this technique of initialization before. Do you know of any links to tutorials, explanations etc? Or even suggest some key words to google search on? – Some Girl Jun 3 '12 at 4:35
Also, as a follow-up question: What if I want to initialize 2 (or more) bank accounts in the same form? – Some Girl Jun 3 '12 at 4:35
@SomeGirl Take a look at the constructors section of the C++ FAQ Lite, section 10.6. Look up "initialization lists" for more info. If you need to initialize multiple member variables, separate them by commas: acct1(123), acct2(456). You need to put them in the same order in which they are declared in your class. – dasblinkenlight Jun 3 '12 at 4:41
@dasblinkenlight: You're not actually required to put them in the same order as declaration, the compiler will treat it like you did. ignores The order they appear in the ctor-initializer-list is ignored, initialization occurs in declaration order. – Ben Voigt Jun 4 '12 at 3:26
@BenVoigt Thanks for the clarification. I decided to simplify the explanation, but you are certainly right. – dasblinkenlight Jun 4 '12 at 3:36

One easy workaround:

private:
    BankAcct *myAccount; // Make this a pointer

... then ...

frmBank(void)
{
    InitializeComponent();
    myAccount = new BankAcct(50);
    int bal = myAccount->GetBalance(bal);
    lblBankBalance->Text += Convert::ToString(bal);

There are other approaches, too. But I think explicitly creating the "myAccount" object is arguably the clearest and simplest. IMHO...

share|improve this answer
This didn't work for me, it says the following errors: C3699: '*' cannot use this indirection on type 'BankAcct' C2750: 'BankAcct': cannot use 'new' on the reference type; use 'gcnew' instead C2440: '=': cannot convert from 'BankAcct *' to 'BankAcct ^' Along with the other errors from before. – Some Girl Jun 3 '12 at 4:42
Ah - that's because you're apparently using Microsoft's .Net dialect of C++: en.wikipedia.org/wiki/C%2B%2B/CLI – paulsm4 Jun 3 '12 at 4:51
Yes I'm using Visual Studio 2010. So can I still use this workaround? Or a similar technique? @paul – Some Girl Jun 3 '12 at 5:05
Been experimenting with it, it works if I do BankAcct ^myAccount and then, myAccount = gcnew BankAccount(50). Thanks for your help! – Some Girl Jun 3 '12 at 5:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.