This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.

Ram Hebbale Hiriyanna

Greenhorn
+ Follow
since Dec 07, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ram Hebbale Hiriyanna

you can also create a character array where you can store commas as characters.
17 years ago
i don't know about any datatype that can give you such storage freedom.....you can use a String object to hold such values.
eg: String val="12,12,23,32,23";
or
String val=new String("12,12,23,32,23");
17 years ago
dear ms. marodia, could you please explain that to me in detail over a coffee???
17 years ago
the codes look like this:
1: class Cog{
public static void main(String []a){
System.out.println("COGNIZANT");
}
}
2: class Cog{
static{
System.out.println("COGNIZANT");
}
public static void main(String []a){}
}
is 1 more efficient in terms of memory than 2? if so, why?
is there a more efficient way to print COGNIZANT than the two mentioned here?
17 years ago
thank you mr. kurinosuke!
hi...i need information on which book to study from for the SCWCD exam.....i'm planning to give myself 3 months for preparation. i recently cleared the SCJP 1.4 scoring 72%....missed out on a good score due to lack of practice. any advice on how to go about preparing for the SCWCD exam is welcome.
you can't.
17 years ago
lets not forget....java is an object based programming language! as the sheriff says, Object gives you methods for many things.....also for thread handling, object state description, etc.
17 years ago
BigOuter.Nested n = new BigOuter.Nested(); this is how you instantiate a static enclosed class.......where the Nested class is the static top level nested class. try incorporating this in your code.....
17 years ago
First of all, A STATIC class is actually NOT an inner class as it doesn't inherently acquire access to all the members of the class its enclosed in..also, check out the access issues from a static context.
17 years ago