.NET Tip: Create a Class with Overloaded Constructors Lansdale PA

Overloading the constructor of a class, which is the method called when you instantiate an object, ensures that your object is populated with all the information it needs to operate properly.

Local Companies

CPA Technology, LLC
610-862-1998
101 W. Elm Street
Conshohocken, PA
The MediGroup, Ltd.
610-666-1955 x12
1308 Egypt Road
Oaks, PA
Deacom, Inc.
610-971-2278
950 West Valley Road, Suite 3000
Wayne, PA
Quintiq Inc.
610-964-8111
565 E Swedesford Rd #303
Wayne, PA
KasTech Consulting, Inc.
215-702-8155
116 N. Bellevue Avenue
Langhorne, PA
Helpline Center Office- Childrens Aid Society
(215) 361-6942
306 N Madison Ave
Lansdale, PA
Mousley Consulting
(215) 631-1366
608 W Main St
Lansdale, PA
Orsino Consulting
(215) 362-6302
Lansdale, PA
Adept Consulting Services Inc
(215) 855-3610
408 W Main St
Lansdale, PA
Idea Revolution
(215) 855-7045
531 S Broad St
Lansdale, PA

provided by: 
Originally published at Internet.com


When I create a class, I often define a constructor to ensure that the object is initially populated with all the information it needs to operate properly. As an example, one of my databound objects can take a database connection or both a database connection and an object representing the unique ID for the record. Each of these methods for instantiating the object is a separate constructor method. This tip teaches you how to overload the constructor of a class, which is the method called when you instantiate an object.

To see how this works, take a simple class (DataObject) that has three public variables on it: public class DataObject { public string Value1; public string Value2; public string Value3; public DataObject(string value1, string value2, string value3) { Value1 = value1; Value2 = value2; Value3 = value3; } public DataObject(DataRow inputRow) { Value1 = inputRow["value1"].ToString(); Value2 = inputRow["value2"].ToString(); Value3 = inputRow["value3"].ToString(); } }

One of the class's constructors will accept values for each of the three variables, and its other constructor will accept a DataRow that has values for each of the three variables. The code assumes that you have a database table somewhere that has fields named value1, value2, and value3, and that all three fields are strings.

To call this function, you can use one of the following methods, which will end up populating the DataObject class with the three values: DataObject obj1 = new DataObject("test1", "test2", "test3"); DataTable dt = DataObject obj2 = new DataObject(dt.Rows[0]);

You also can use this method to overload any method on your class. As long as the parameter list is different, you can add an additional overload. You can't, for instance, have two overloads that each has three string parameters. You can have one overload that accepts one string and another that accepts two strings.

About the Author

Eric Smith is the owner of Northstar Computer Systems, a Web-hosting company based in Indianapolis, Indiana. He is also a MCT and MCSD who has been developing with .NET since 2001. In addition, he has written or contributed to 12 books covering .NET, ASP, and Visual Basic.

Author: Eric Smith

Read article at Internet.com site

Featured Local Company

CPA Technology, LLC

Sage software, consulting & implementation, training (Sage Authorized Training Center)

610-862-1998
101 W. Elm Street
Conshohocken, PA
www.cpatechnology.net

CPA Technology is a leader in providing Sage software solutions to the construction and real estate industries in Eastern Pennsylvania, New Jersey, and Delaware.

www.cpatechnology.net

Related Local Events
Hot Java at the Watercooler
Dates: 12/23/2009 - 1/23/2010
Location: Odyssey Travel
Skippack, PA
View Details

IT Roundtable
Dates: 11/10/2009 - 11/10/2009
Location: D&E Communications
Brownstown, PA
View Details

Fraser Advanced Information Systems Mixer
Dates: 10/29/2009 - 10/29/2009
Location:
Bethlehem, PA
View Details

PREP 2009: 22nd International Symposium, Exhibit and Workshops
Dates: 7/19/2009 - 7/22/2009
Location: Loews Hotel
Philadelphia, PA
View Details