Muralidhar Gandepalli

Greenhorn
+ Follow
since Apr 13, 2001
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 Muralidhar Gandepalli

Can some one throw light on why Hashtables are called synchronized ...
Hi
can some body explain the difference between jsp and jspi ?

Thanx in Advance!!

Murali
19 years ago
JSP
Requirment :
If user Enters(mm/dd/yy) 01/01/03 and 01/05/03 i
need to get the following set as OutPut =
{01/01/03,01/02/03,01/03/03,01/04/03,01/05/03}
In order to achive above functionality ,Is there any Class in Java which has a function next() which returns me the next date ?
i.e XDate objXDate= new XDate(01/01/03);
objXDate.next()----> give me 01/02/03 .
If there is any class like this please let me know .That would be great help to me !!
thanx in advance
Murali
20 years ago
Thankyou for your reply.Cool Funda ..It didnt strike me .
20 years ago
Actually in a discussion with one Gentle Man(Form interview Panel) i have expressed same feeling.But that person told me that there is a way !!! Till i know the answer iam fine assuming that there is no way !!!
20 years ago
I have two Classes with names
Class1:
class Base1{
fnBase1()
{
// soem Impl
}
}
Class2:
class Base2{
fnBase2()
{
// soem Impl
}
}

Class3:
class Derived
{
}
Is there any way other to get function implementation fnBase1 and fnBase2 be avilable in Derived Class with out using Composition ?
i.e if i say
Derived extends Base1{
//i have fnBase1 implementaion available ...
}
How can i have fnBase2 also ?
Murali
20 years ago
If i have the following code
package com.crdb.Debug;
class A {
int i=10;
}
class B extends A{
int i=20;
}
public class Derived extends B{
int i=0;
public Derived() throws {
super();
---->
}
public static void main(String[] args) {
}
}
How can access the variable i of Class A in the Derived Constructor ?

Please help in fidning the solution .
Thanx in Advance
Murali
20 years ago
Hi ,All
I have this question troubling me for some time ..."Inspite of having Garbage Collector in a VM can we have memory leaks ?.If yes can any one give one or two examples of these leaks "
Thanx in advance
Murali
20 years ago
All,I have a requirment to find the number of lines( we have to exclude blnak lines and comments) written in a project (written in Java ).
We can write a program to do this i just wanted to check if any tool (off shelf) available to do this ?
Thanx in advance
21 years ago
All,
In my project we want to use existing VBCode(I don't know abcd of VB )for Buisness Logic .So I need to invoke some VB functions with some data from a Servlet.
Can some body give me references/tips to find out different ways to acheive the above Objective.

Thanx in Advance.
[ March 04, 2003: Message edited by: Muralidhar G ]
21 years ago
1) should we recompile all the classes if we change the interface used by these classes?
Ans)Yes ,need to recompile all the classes.
2) should we recompile all the classes if we changes the (base class) actual class from which we have inherited our classes?
Ans)No ,there is no need to recompile all the classes.
Correct me if my answers for these questions are wrong.
If answers are correct,Can somebody explain me the difference in these two cases ?
Iam intrested in knowing the behaviour of the classloader in these 2 cases.
thanx in advance!
22 years ago
I have a requirment of reading an xlfile and converting into an .txt file .Can some body help me where i can get realted information.
Thanx in advance
murali
22 years ago
I have a performance issue "Is there any overhead involved when we call functions from base class instead of derived class ??."
thanx in advance
22 years ago