Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array as shown below.

Basically in this array, sometimes thebagdata[i].getSecurityType() may or may not contain values in an array.

 for (int i = 0; i <bagdata.length; i++) {
                if (bagdata[i].getSecurityType() != null) {
                    flag = true;
                } else {
                    flag = false;
                }

            }

I think that my code is overriding the flag value. How can I deal with this?

share|improve this question
1  
I really don't understand what the problem is... – mre Nov 4 '11 at 14:37
1  
Where is the flag relevant? Only inside the for loop or outside too? Also can you elaborate on how the flag is used further in your app? – Mechkov Nov 4 '11 at 14:38
As @Mechkov says: tell us what would you like the flag to say. By example "this item meets some condition" (it's used inside the loop), or "there are some item that meets some condition" (it's used then, after the loop). – helios Nov 4 '11 at 14:45
Is it possible that you mean that bagdata[i] might be null, and you want to handle this case? – Laf Nov 4 '11 at 14:48

4 Answers

up vote 3 down vote accepted

Depend on what you want to flag, try:

boolean flag = true;

for (int i = 0; i <bagdata.length; i++) {
    flag &= bagdata[i].getSecurityType() != null;
}
share|improve this answer

Use break; immediate after setting the flag if required. If you want flag against each value, make an array of flags.

share|improve this answer

If you want to set flag to true if at least one containsdata you should just set the flag to false before the loop and delete part of else like this:

        flag=false;
          for (int i = 0; i <bagdata.length; i++) {
            if (bagdata[i].getSecurityType() != null) {
                flag = true;
            }
        }

but if you want to remember flag for each element in array you should create an array of flags...

share|improve this answer

If you the flag value to be set true then come out of the loop using break statement.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.