Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Alejandro Rodriguez
Greenhorn
+ Follow
news
3
Posts
1
Threads
since Sep 16, 2009
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by Alejandro Rodriguez
Overiding Doubt
Hi,
I have a doubt regarding overriding.
If i have an object B that extends A and override a function (for example equals, or toString).
In a main function of a C class, if i have a instance of B , can i call the method of parent class?
Example:
public class Padre { public void print(){ System.out.println("Padre!"); } }
public class Hija extends Padre { public void print(){ System.out.println("Hija"); } }
public class test { public static void main(String[]args){ Hija hija = new Hija(); //Here ,How can i call print method of padre? hija.print(); Padre padre = new Hija(); padre.print(); } }
show more
13 years ago
Programmer Certification (OCPJP)
Please explain why e# is not a legal identifier
Hi all,
list of connecting caracters:
http://www.fileformat.info/info/unicode/category/Pc/list.htm
Characters in the 'Symbol, Currency' Category
http://www.fileformat.info/info/unicode/category/Sc/list.htm
Sorry for answer again, but i can find "edit" button
Thanks for your attention.
show more
15 years ago
Programmer Certification (OCPJP)
Please explain why e# is not a legal identifier
Sorry for reopen this thread, I´m studing for Exam 310-065.
"the identifiers can have any currency characters such as euro,pound"
I have tryed:
String e€;
and compiles.
I have seen the list of connecting caracters
http://www.fileformat.info/info/unicode/category/index.htm
In essece the _ .
Can you give me a link to the valid currency characters?
Thanks for your attention,
Alex
show more
15 years ago
Programmer Certification (OCPJP)