Computer Science Canada
Programming C, C++, Java, PHP, Ruby, Turing, VB
Username:
Password:
Register
Wiki
Blog
Search
Turing
Chat Room
Members
String problem... again..
Index
->
Programming, Java
->
Java Help
Author
Message
MysticVegeta
Posted:
Fri Dec 16, 2005 12:11 pm
Post subject: String problem... again..
This is really weird. I dont know whats going on! I go soemthing like this
code:
String a = "abcde";
String ab = a.substring(1,2);
System.out.println(ab);
if (ab == "a") {
System.out.println (a);
//doesnt go here!!!
}
Note: Pseudocode, anyways, what is the problem, ab = "a" but "a" not= ab? what the hell?
Sponsor
Sponsor
Tony
Posted:
Fri Dec 16, 2005 12:41 pm
Post subject: (No subject)
common mistake in Java.
ab is an
object
of class String, while "a" is a string native value.
== checks for equality, but Object instance is not the same as an instance of a value. You have to compare their content explicitly.
Something like ab.equals("a")
It's been a while since I've done Java
Tony's
programming blog
. DWITE - a
programming contest
.
wtd
Posted:
Fri Dec 16, 2005 2:50 pm
Post subject: (No subject)
Tony wrote:
common mistake in Java.
ab is an
object
of class String, while "a" is a string native value.
Wrong.
Strings are always objects. The thing is, "==" on objects checks to see if they're exactly the same object, not that their contents are identical.
As mentioned, use the "equals" method.
Tony
Posted:
Fri Dec 16, 2005 3:34 pm
Post subject: (No subject)
Tony's
programming blog
. DWITE - a
programming contest
.
MysticVegeta
Posted:
Fri Dec 16, 2005 4:29 pm
Post subject: (No subject)
omg you are joking!! I thought .equals and "==" meant the same! Why do they have to make it so confusing?!
wtd
Posted:
Fri Dec 16, 2005 6:27 pm
Post subject: (No subject)
MysticVegeta wrote:
omg you are joking!! I thought .equals and "==" meant the same! Why do they have to make it so confusing?!
Because there's no operator overloading.
Display posts from previous:
All Posts
1 Day
7 Days
2 Weeks
1 Month
3 Months
6 Months
1 Year
Oldest First
Newest First
Index
->
Programming, Java
->
Java Help
Page
1
of
1
[ 6 Posts ]
Jump to:
Select a forum
CompSci.ca
------------
- Network News
- General Discussion
General Forums
-----------------
- Hello World
- Featured Poll
- Contests
Contest Forums
-----------------
- DWITE
- [FP] Contest 2006/2008
- [FP] 2005/2006 Archive
- [FP] 2004/2005 Archive
- Off Topic
Lounges
---------
- User Lounge
- VIP Lounge
Programming
--------------
- General Programming
General Programming Forums
--------------------------------
- Functional Programming
- Logical Programming
- C
C
--
- C Help
- C Tutorials
- C Submissions
- C++
C++
----
- C++ Help
- C++ Tutorials
- C++ Submissions
- Java
Java
-----
- Java Help
- Java Tutorials
- Java Submissions
- Ruby
Ruby
-----
- Ruby Help
- Ruby Tutorials
- Ruby Submissions
- Turing
Turing
--------
- Turing Help
- Turing Tutorials
- Turing Submissions
- PHP
PHP
----
- PHP Help
- PHP Tutorials
- PHP Submissions
- Python
Python
--------
- Python Help
- Python Tutorials
- Python Submissions
- Visual Basic and Other Basics
VB
---
- Visual Basic Help
- Visual Basic Tutorials
- Visual Basic Submissions
Education
-----------
- Student Life
Graphics and Design
-----------------------
- Web Design
Web Design Forums
---------------------
- (X)HTML Help
- (X)HTML Tutorials
- Flash MX Help
- Flash MX Tutorials
- Graphics
Graphics Forums
------------------
- Photoshop Tutorials
- The Showroom
- 2D Graphics
- 3D Graphics
Teams
------
- dTeam Public
Style:
Appalachia
blueSilver
eMJay
subAppalachia
subBlue
subCanvas
subEmjay
subGrey
subSilver
subVereor
Search:
You can syndicate this boards posts using the file
backend.php
or view the
topic map using sitemap.php.
Terms of Use
|
Privacy Policy