Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Constructor (object-oriented programming): Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 21:53, 27 October 2006
edit
Rich257
(
talk
|
contribs
)
Extended confirmed users
19,185
edits
→
Example
:
Confused example fixed?
← Previous edit
Revision as of 21:54, 27 October 2006
edit
undo
Rich257
(
talk
|
contribs
)
Extended confirmed users
19,185
edits
→
Example
:
Change to compile and demonstrate paramters to a constructor
Next edit →
Line 40:
class myClass
{
private int mA;
private string mB;
public myClass(int a, string b)
{
a
mA
=
1
a
;
b
mB
=
2
b
;
}
}