Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
High Performance Python for Data Analytics
this week in the
Python
forum!
Thitipong Suparurkrat
Greenhorn
+ Follow
6
Posts
0
Threads
0
Cows
since Sep 20, 2005
Merit Badge info
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
1
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
Ranch Hand Scavenger Hunt
Number Posts (6/100)
Number Threads Started (0/100)
Number Cows Received (0/5)
Number Likes Received (1/10)
Number Likes Granted (0/20)
Set bumper stickers in profile (0/3)
Report a post to the moderators (0/1)
Edit a wiki page (0/1)
Create a post with an image (0/2)
Greenhorn Scavenger Hunt
First Post
Number Posts (6/10)
Number Threads Started (0/10)
Number Likes Received (1/3)
Number Likes Granted (0/3)
Set bumper stickers in profile (0/1)
Set signature in profile
Search for a post/thread (0/3)
Set a watch on a thread
Save thread as a bookmark
Create a post with an image (0/1)
Recent posts by Thitipong Suparurkrat
JDBC Connect - Table/View 'CATEGORY' does not exist
at web.xml
try to change
<res-type>javax.sql.DataSource</res-type>
to
<res-type>javax.sql.ConnectionPoolDataSource</res-type>
show more
7 years ago
JDBC and Relational Databases
assignments: too easy?
0.0
1 / 2 -> (int / int = 0.)
0 * 0.5 = 0.
[ July 18, 2007: Message edited by: Thitipong Suparurkrat ]
show more
13 years ago
Programmer Certification (OCPJP)
mock exam question
ps.
public void Test1(){
System.out.println("Constructor");
}
i think this is just a method not constructor.
show more
15 years ago
Programmer Certification (OCPJP)
toString() of wrapper classes.
toString return new String
then it must not same string
show more
15 years ago
Programmer Certification (OCPJP)
Java download
for now
JDK 5.0 Update 5
show more
15 years ago
Programmer Certification (OCPJP)
conversion Doubt
public class Conversion { public static void main(String[] args) { int i = 1234567890; float f = i; System.out.println(i); System.out.println(f); System.out.println((int) f); System.out.println(i - (int)f); } }
try this
show more
15 years ago
Programmer Certification (OCPJP)