Help coderanch get a
new server
by contributing to the fundraiser

Gayathri Jagannathan

Greenhorn
+ Follow
since Nov 13, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Gayathri Jagannathan

Hai,
Can one possibly manipulate any Excel File with Java code.
Does java code support Running/creating macros in excel files.
Thanx & REgards
Gayathri
23 years ago
Hai All,
I am Gayathri working for an MNC as software engg.
I am planning to take up my Certification in mid april.\
Please include me in the study group
Regards
Gayathri
hai,
can anyone please explain the internal logic of the bit shifting operators as there are a few doubts like the bit -5<<1 why gives the resulyt of -3 when it shud give -1
this site gives few details but not the whole picture
www.jchq.net/tutorial/BitShift.htm
Thanx in advance
I put my vote
23 years ago
I would like to change the cursor type depending on the different buttons cilcked.
Is anyway to change the mouse pointer using either JavaScript/JScript/ASP/HTML.
Hi,
Try this peice of code to follow the logic behind the calling of
method A in obj 2 and thecalling of main method in obj1
cheers
Gayathri

public class obj11
{
int i =2;
public static void main(String args[])
{
int j=2;
System.out.println("In main");
obj11.obj2 o2 = new obj11().new obj2();
o2.methodA();
System.out.println(o2.h);
}
class obj2
{
String h ="Hello";
void methodA()
{
String s = "Java ";
System.out.println(h+s+i);
}
}
}
class obj3 extends obj11
{
static
{
System.out.println("Inside Static");
obj11.obj2 o4= new obj11().new obj2();
o4.methodA();
}
}

Hi,
Try this peice of code to follow the logic behind the calling of
method A in obj 2 and thecalling of main method in obj1
cheers
Gayathri

public class obj11
{
int i =2;
public static void main(String args[])
{
int j=2;
System.out.println("In main");
obj11.obj2 o2 = new obj11().new obj2();
o2.methodA();
System.out.println(o2.h);
}
class obj2
{
String h ="Hello";
void methodA()
{
String s = "Java ";
System.out.println(h+s+i);
}
}
}
class obj3 extends obj11
{
static
{
System.out.println("Inside Static");
obj11.obj2 o4= new obj11().new obj2();
o4.methodA();
}
}

Hi,
Absolutely FAbulous achievement is what i would say.
And i definitely would love to have ur JLS notes
mail:gayathrij@ssi-technologies.com
Three cheers to you
Gayathri
23 years ago