Venu Navat

Ranch Hand
+ Follow
since Dec 28, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Venu Navat

hi micheal,

could u please mention clearly what is your doubt regarding the code?
In some code i saw,

import DevelopersToolkit.*;
import DragandDrop.*;
import Item.*;
import pipeline.*;

what are all these classes and they are imported from?
19 years ago
we find "java.exe" in both bin and jre/bin folders .
what is the difference between both? are they same?
19 years ago
what is difference between HashTable and HashMap ???
19 years ago
thanks...

please explain the same in detail
19 years ago
what is "out" in system.out.println???
20 years ago
hi anupam,

yes..i got you...if subclass don't extend from superclass,then super()will not be inserted automatically...
20 years ago
Ali pope.....i mentioned ....IF parentclass is assumed as an interface and if test22 implements it ,then call to super class constructor would not be automatically inserted......bcoz interface donot have constuctors......

i request anupam sinha to respond to this answer......
20 years ago
code
____________________________________________________________________________

class ParentClass
{
public ParentClass(String a) // no no-arg constructor
{}
}

public class test22 extends ParentClass
{
String str;
public test22(String a)
{ this.str = a; }
public static void main(String args[])
{
test22 t = new test22("String");
}
}
___________________________________________________________________________

suppose if the parentclass is an interface,then call to super() would not be automatically inserted.....
is it correct scenario, anupam sinha???
20 years ago
if we explicitly call the super class constructor in the subclass constructor...then there will not be any error...

is that correct Anupam Sinha???

--------------------------------------------------------------------------
class ParentClass
{
public ParentClass(String a) // no no-arg constructor
{}
}

public class test22 extends ParentClass
{
String str;
public test22(String a)
{
--> super(a);
this.str = a;
}

public static void main(String args[])
{
test22 t = new test22 ("String");
}
}
---------------------------------------------------------------------------
20 years ago
suppose a java class don't have a constructor...will compiler creates a default constuctor for that class???
20 years ago
what is the difference between jdk , j2sdk , j2se , j2ee???
20 years ago
what is the maximum data a jsp page can display ???is it 8kB??
is there any limit???
[ March 03, 2005: Message edited by: Bear Bibeault ]
20 years ago
JSP
what is the main purpose of using inner and outer classes???
20 years ago
whether connection pool is a feature of jdk1.4 or not?
or it is a feature of j2ee???
20 years ago