Is it good programming to set instance in class without using C-tor

T

Tony Johansson

Hello!

I have a class definition called MyClass see below.

I create an instance of this class MyClass
I also want this instance to be able to modify the test instance that exist
in this class.

I can make the instance of this class MyClass to be able to access the
instance test in two ways.

I can either pass an instance of this class MyClass in the c-tor and assign
the instance to the test field.

I can also use a set property by calling the property. Here I set an
instance to the test field.
public MyClass Test
{
set {myTest= value;}
}

Now to my question is it bad programming to use the second method which was
to use a property to set the instance test in the object.

A disadvantage to use a C-tor is if I want to add another argument to a
C-tor and this C-tor is called in many different forms I have to change in
many places.

If I instead use the property to set the test instance in the class it is
sufficient to add just a call to the setter property.

public class MyClass
{
private MyClass test;

public MyClass(...)
{

}

public MyClass Test
{
set {myTest= value;}
}
}

//Tony
 
G

Gaurav Vaish \(www.EduJini.IN\)

Hi,
Now to my question is it bad programming to use the second method which
was to use a property to set the instance test in the object.

Depends on your requirement.
If you want to you use MyClass in such a way that the instance (in
private field) is not alterable, don't publish a write-property. Use it in
constructor.
A disadvantage to use a C-tor is if I want to add another argument to a
C-tor and this C-tor is called in many different forms I have to change in
many places.

There's no case of good-or-bad programming here.
It's just the case of use.

For example, if you look into the various *EventArgs classes, you'd find
the members being settable only through ctor and not as properties.

However, classes would allow you to set the properties directly... it's
just the scenario.
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

Tony said:
I have a class definition called MyClass see below.

I create an instance of this class MyClass
I also want this instance to be able to modify the test instance that exist
in this class.

I can make the instance of this class MyClass to be able to access the
instance test in two ways.

I can either pass an instance of this class MyClass in the c-tor and assign
the instance to the test field.

I can also use a set property by calling the property. Here I set an
instance to the test field.

In general I prefer both:
- no arg constructor + property setter
- constructor with args

But in your specific case (where the property is the same
type as the class itself) I think you can not pass
the arg in the constructor or you will get an infinite
source code (unless you have another way of creating the
test object).

Arne
 
B

Bruce Wood

Arne said:
In general I prefer both:
- no arg constructor + property setter
- constructor with args

But in your specific case (where the property is the same
type as the class itself) I think you can not pass
the arg in the constructor or you will get an infinite
source code (unless you have another way of creating the
test object).

....or you allow the argument to be null.
 
B

Bruce Wood

Tony said:
Hello!

I have a class definition called MyClass see below.

I create an instance of this class MyClass
I also want this instance to be able to modify the test instance that exist
in this class.

I can make the instance of this class MyClass to be able to access the
instance test in two ways.

I can either pass an instance of this class MyClass in the c-tor and assign
the instance to the test field.

I can also use a set property by calling the property. Here I set an
instance to the test field.
public MyClass Test
{
set {myTest= value;}
}

Now to my question is it bad programming to use the second method which was
to use a property to set the instance test in the object.

A disadvantage to use a C-tor is if I want to add another argument to a
C-tor and this C-tor is called in many different forms I have to change in
many places.

If I instead use the property to set the test instance in the class it is
sufficient to add just a call to the setter property.

public class MyClass
{
private MyClass test;

public MyClass(...)
{

}

public MyClass Test
{
set {myTest= value;}
}
}

//Tony

For me, the question of what arguments should go on the constructor is
really a different question: what constitutes a "correctly formed
instance" of your object? By that I mean, what is the minimum amount of
information that must be set in your object in order that it be usable
by a client application? Then, within that set, which ones have
defaults? Any object property that is required in order that the object
be usable and that has no default must be passed on the constructor.
Either that or you implement hokey schemes like "Valid" properties that
your client has to test before they try to use an object instance.

If every MyClass object has to have a Test object, or the original
MyClass object is useless, and there is no such thing as a default Test
object, then put it on the constructor. This means, "If you don't pass
me one of these then I can't function properly." If the Test object is
optional, or if you can provide a default Test object if one isn't
supplied, then make it a settable property and leave it off the minimal
constructor.

You might have it on the constructor _and_ a property if it's required
for the proper functioning of every MyClass instance, but it's also
changeable by the client.

Oh, yeah. That's another consideration: can the client reasonably
change this Test object during the execution of a program? If not, even
if it's not required, then it should be on a constructor, even if it's
optional (there are other constructors that don't require it). If so,
then you should provide a settable property, and it may or may not be a
parameter to a constructor (for convenience).

(Of course, as another poster pointed out, if you have a circular class
reference like this, there must be a way to create an instance without
supplying a Test object, or you could never create the first one. This
way of creating a Test instance, though, does not need to be directly
accessible to client programs.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top