I'm stuck with my a piece of code I'm creating. My IDE is Eclipse and when I use its debugging feature, to trace what's happening on each line, it outputs perfectly. However, when I click the "run" project, it just outputs a blank screen:
public static void compareInterests(Client[] clientDetails)
{
int interests = 0;
for (int p = 0; p < numberOfClients; p++)
{
for (int q = 0; q < numberOfClients; q++)
{
String a = clientDetails[p].getClientInterests();
String b = clientDetails[q].getClientInterests();
int count = 0;
while (count < a.length())
{
if (a.charAt(count) == b.charAt(count))
interests++;
count++;
}
if ((interests >= 3) && (clientDetails[p].getClientName() != clientDetails[q].getClientName()))
System.out.print (clientDetails[p].getClientName() + " is compatible with " + clientDetails[q].getClientName());
interests = 0;
}
}
}
The code is designed to import an object array which contains information on a client's name and a client's interests. The client's interests are stored in the format "01010", where each 1 means they are interested in that activity, each 0 means they are not.
My code compares each character of every client's string with every other client's string and outputs the results for all client's that don't have the same name and have three or more interests in common.
When I run this code through Java's debugger, it outputs fine - but when I click run project or compile, I just get a blank screen.
Any ideas?
EDIT: I changed the section
clientDetails[p].getClientName() != clientDetails[q].getClientName()
to
clientDetails[p].getClientName().equals(clientDetails[q].getClientName()
as the people in the answers below suggested. However, I'm still getting blank output. Any other ideas (and also, why did Eclipse's debugger ignore this and output everything correctly?)
Sample input looks like this:
Sophia Candappa F 23 00011
Jade Clarke F 25 00011
Ignore the gender and age (F and 23/25) as I've taken care of them in other sections.
Edit 2:
Okay, even stranger now! If I add this code after interest = 0, like so:
interests = 0;
System.out.println("");
I get output from it (horribly formatted output, as I may get a result, new line, result, then four new lines, then result, depending on who matches up with who in the loop statements. I really don't get why that line gives output. Anyone??
