943,550 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 3205
  • Java RSS
Oct 7th, 2006
0

java constructor..!

Expand Post »
You are given a class named Clock that has one int instance variable called hours . Write a constructor for the class Clock that takes one parameter, an int , and gives its value to hours .

help me some one
Similar Threads
THK
Reputation Points: 10
Solved Threads: 0
Newbie Poster
THK is offline Offline
15 posts
since Oct 2006
Oct 7th, 2006
0

Re: java constructor..!

Hi everyone,

Java Syntax (Toggle Plain Text)
  1. public class clock
  2. {
  3.  
  4. public clock(int num)
  5. {
  6.  
  7. }
  8.  
  9. }

Richard West
Reputation Points: 25
Solved Threads: 10
Practically a Master Poster
freesoft_2000 is offline Offline
623 posts
since Jun 2004
Oct 7th, 2006
0

Re: java constructor..!

You need to give out more details. Do you wish learn how to write constructors in general or are having a particular problem with you Clock class?

Constructor for you Clock class would look something like the following code:

public Clock(int h)
{
this.hours = h;
}
Reputation Points: 28
Solved Threads: 3
Light Poster
Rayhan Muktader is offline Offline
30 posts
since Oct 2006
Oct 7th, 2006
0

Re: java constructor..!

thanks! it's been lot of help..
THK
Reputation Points: 10
Solved Threads: 0
Newbie Poster
THK is offline Offline
15 posts
since Oct 2006

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: Program help
Next Thread in Java Forum Timeline: what is the diffarance between object and varible





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC