Forum: Java Jul 2nd, 2009 |
| Replies: 3 Views: 355 To be visible to just parent class.
namespace Example
{
class Parent
{
void Method()
{
Child c = new Child();//No error
} |
Forum: Java Sep 27th, 2007 |
| Replies: 12 Views: 1,710 thanks for this information :) |
Forum: Java Sep 27th, 2007 |
| Replies: 12 Views: 1,710 and this?
int myInt = 5;
String myStr;
myStr = myInt.tostring(); |
Forum: Java Sep 26th, 2007 |
| Replies: 12 Views: 1,710 int myInt = 5;
String myStr;
myStr = "" + myInt; |
Forum: Java Sep 26th, 2007 |
| Replies: 12 Views: 1,710 If you meant me, I DON'T LIKE IDIOT COMMENTS!!! I wanted just to help! |
Forum: Java Sep 25th, 2007 |
| Replies: 12 Views: 1,710 so, that's JAVA!
but when I was using it, I think I did something before!!!!!!! |
Forum: Java Sep 25th, 2007 |
| Replies: 12 Views: 1,710 you don't have any problem to cast int to string
int myInteger = 25
String myString = myInteger;
what's your problem?! |
Forum: Java Sep 22nd, 2007 |
| Replies: 4 Views: 5,683 I didn't see your code, but I can't say except debug it!! |
Forum: Java Sep 22nd, 2007 |
| Replies: 22 Views: 2,291 remove the double quotes
UPDATE Customers SET stud_name='+stdName+' WHERE stud_ID='45698' |
Forum: Java Sep 16th, 2007 |
| Replies: 3 Views: 2,042 you maybe need to close the file after editing.. |