Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / September 2006

Tip: Looking for answers? Try searching our database.

best way to initialize variables from constructor

Thread view: 
34stunts@gmail.com - 17 Sep 2006 11:41 GMT
Say I have the following code:

class myClass
{
private String _input;
public myClass(String input)
{
_input = input;
}
}

I want to initialize a member variable from parameter to the
constructor, this works, but I don't think it "looks" very good.

Is there a better way to set the _input from the parameter in the
constructor? Possibly having my private variable also called "input"
not "_input".
Chris Brat - 17 Sep 2006 11:58 GMT
Hi,

Try this.

Regards,
Chris

public class myClass {

   private String input;

   public myClass(String input) {
       this.input = input;
   }
}

> Say I have the following code:
>
[quoted text clipped - 13 lines]
> constructor? Possibly having my private variable also called "input"
> not "_input".


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.