Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I am so glad that I found your site, it is an excellent resource and has helped me greatly..."

Geography

Where in the world do Tek-Tips members come from?

Learining Java and have a question about some code that is not working (help)

csphard (Programmer)
14 Jul 12 12:42
I am passing the following to this code Howard James Mike. I am trying to read Howard but it is not working Why..

PART THAT DOES NOT WORK
if (myout == "Howard")
{
System.out.println("Hey Howardppp");
}

ENTIRE CODE
public class MyTest {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

int howmany = args.length;
String[] myInfo = new String[howmany];


for (int a = 0 ; a < howmany; a++)
{
myInfo[a] = args[a]; //"Howard";
}


System.out.println(" how many args " + howmany);




for (int i = 0 ; i < howmany; i++)
{
System.out.println("Item" + i + " " + myInfo[i]);

String myout;
myout = myInfo[i];
// this part does not work why
if (myout == "Howard")
{
System.out.println("Hey Howardppp");
}
//System.out.println("myout=" + myout);
}

System.out.println("end");

}

}
feherke (Programmer)
14 Jul 12 12:59
Hi

The classic beginner mistake. == checks equality of pointers. Use String.equals() to check equality of values :

CODE --> (fragment)

if (myout.equals("Howard")) {
  System.out.println("Hey Howardppp");
}

// or with null-safe Yoda condition
if ("Howard".equals(myout)) {
  System.out.println("Hey Howardppp");
} 

Next time please indent your code and post it between [code] and [/code] TGML tags.

Feherke.
http://feherke.github.com/

csphard (Programmer)
14 Jul 12 14:33
Hey thanks that worked....

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Back To Forum

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close