Welcome to SILK, Krish.
Only some of us would understand your piece of code or the intricacies
of writing Object Oriented code.
You may not find a lot of "Silk" discussion, in fact many silk listers
do not know who "Silk Smitha" is, let alone that she was an item girl.
But I can foresee a nice drift on this thread, they usually do at an
amazing pace.
What do you drive? I will add you to the list of BMTC and other BPO
vehicles which drive me insane in Bangalore. :-)
-Venkat
Ashok Krish wrote:
This is not silkulist? I mean, the mailing list for fans of an erstwhile
South Indian item girl?
Oh, damnation. I have think of a new introduction then.
What is the output of this piece of code?
Class Krishashok
{
public String intro = new String();
public void Krishashok() {
intro = "Krish Ashok is a habitual blogger, perpetual
procrastinator, intermittent musician, careless reader and reckless driver
who is using his day job as head of Web 2.0 innovation lab at Tata
Consultancy services to pay for all the above";
}
public static void main (String args[])
{
Krishashok instance = new Krishashok();
System.out.println(instance.intro);
}
}
The output of this piece of code more or less describes me.
ps: The will print nothing because programmer defined constructors should
not have a return type, muahahaha.