surya sadhu

Greenhorn
+ Follow
since Feb 16, 2004
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 surya sadhu

Hi guys,I want to write a program which prints '*' in a diamond shape.
thanks
[This message has been edited by surya (edited July 23, 2000).]
[This message has been edited by surya (edited July 23, 2000).]
23 years ago
I downloaded this book .I am just going thru the 5th chapter.
Of the 3 books I had on EJB , I feel this is the best book.
I even informed about this book to my friends.
They are also feeling that this is a must for a beginner .
Thanks Paul Wheaton for suggesting this book.
HI
The problem is with your
ch.draw(10);
either make it
ch.draw(10f);
or change the draw method in the child
from
public void draw(float ll)
to
public void draw(int ll)
I think this 'll solve your problem
HI
Please ignore the html tags
23 years ago
HI
I think that example is from
<font color=red > Servlets by Jason Hunter</font>
In that book ,in first chapters itself he mentioned
that the servletrunner provided along with JSDK
(in your case jswk) won't support all the
functionalities like Servlet chaining , SSI etc.
So you better download java web server or some equivalent.
23 years ago
Hi faizaharis
Try this code....
class a
{
static transient int a = 15;
public static void main(String args[])
{
System.out.println(a);
}
}
The class got compiled and the output is 15.
A transient modifier should be used only for
an instance variable , not for a local variable.
Congrtas Nalini!!!
Hope I'll find you around , Helping others
Hi
Put your class files under jsdk2.0/examples.
Check whether the path and classpath are properly set or not
23 years ago
I too took the exam and I agree with Suresh
Hi
Please ignore the previous reply.
The code will not compile only if you try to call the local (Automatic) variable which is not initialised.
Replace the code as indicated below
System.out.println("Javix Protocol",i);
Hi
The code will not compile if you try to call the local (Automatic) variable which is initialised.
Replace the code as indicated below
System.out.println("Javix Protocol",i);