Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
:: Server side development
>
Java and JSP
Java: Class Cast exception...strange outcome
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Thread Tools
Rate Thread
Enjoy an ad free experience by logging in. Not a member yet?
Register
.
08-26-2004, 06:03 PM
PM User
|
#
1
Kernel_Mustard
New to the CF scene
Join Date: Aug 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Class Cast exception...strange outcome
so i was getting a class cast exception in part of my code (using Java 2 sdk 1.4.1). i added an exception handler and the following is the section of the code:
Object obj = _secondVector.get(i);
try{
Integer y = (Integer)obj;
_firstVector.set(y.intValue(), "<<<remove>>>");
}catch(ClassCastException e){
System.err.println("Cast Error Caught (change)");
System.err.println("Class is really: " + obj.getClass().getName());
e.printStackTrace();
}
_secondVector is simply of the Vector class. this, i thought returned an Object. However, the exception handler prints out:
Cast Error Caught (change)
Class is really: java.lang.String
can anyone shed some light on why obj is a String instead of an Object?
******edit******
i tried changing the line:
Integer y = (Integer)obj;
to:
Integer y = new Integer(obj);
Because it said that obj was actually a String and there is an Integer constructor with String as the argument, but i get:
cannot resolve symbol
symbol : constructor Integer (java.lang.Object)
location: class java.lang.Integer
Integer y = new Integer(obj);
So now it's telling me that obj is an object, and before that it was a string......?????
Last edited by Kernel_Mustard; 08-26-2004 at
06:15 PM
..
Kernel_Mustard
View Public Profile
Find More Posts by Kernel_Mustard
08-29-2004, 09:12 AM
PM User
|
#
2
shmoove
Regular Coder
Join Date: Dec 2003
Posts: 367
Thanks: 0
Thanked 0 Times in 0 Posts
A String is an Object too (well, everything except the primitive types is an Object in Java).
To use the Integer constructor that takes a String to need to cast the Object into a String:
Code:
Integer y = new Integer((String)obj);
Or, assuming that the Object is a String with a numeric value, it would be slightly more effective:
Code:
int y = Integer.parseInt((String)obj);
shmoove
shmoove
View Public Profile
Visit shmoove's homepage!
Find More Posts by shmoove
Bookmarks
del.icio.us
StumbleUpon
Google
Digg
Jump To Top of Thread
«
Previous Thread
|
Next Thread
»
Thread Tools
Show Printable Version
Email this Page
Rate This Thread
Rate This Thread
:
5 : Excellent
4 : Good
3 : Average
2 : Bad
1 : Terrible
Posting Rules
You
may not
post new threads
You
may not
post replies
You
may not
post attachments
You
may not
edit your posts
BB code
is
On
Smilies
are
On
[IMG]
code is
On
HTML code is
Off
Forum Rules
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
01:36 PM
.
Advertisement
Log in to turn off these ads.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.