Where in the class do you define the data member nPoint?
whroeder1:
Where in the class do you define the data member nPoint?
Under the private label, it wasnt included in the code snippet, sorry
Where in the class do you define the data member nPoint?
You can't call another constructor either.
Are the constructors private? If so, do you use any static method to create the instances?
Ex Ovo Omnia:
Are the constructors private? If so, do you use any static method to create the instances?
No, they are not private
Are the constructors private? If so, do you use any static method to create the instances?
You can not call one constructor from the other. If you need some common initilization stuff, move it in a private method and then call it from both constructors.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I get this error on the following code:
What am I doing wrong?