Tagged Questions
0
votes
2answers
122 views
Break-continue without auxiliary boolean variable?
In Java, I have such code:
boolean contains;
for (int i = 0; i < n; i++) {
// get the current matrix value
t = A[i][j];
// check if it has been already considered
contains = ...
0
votes
3answers
640 views
How to rewrite Java [continue <label> and break <label>] in C#?
In Java it's written like this.. when I was porting this code... realizied there is no such thing as
break <label> and continue <label>.
I know those commands were not included because ...
0
votes
2answers
1k views
why i am getting Undefinedlabel error in java?
why i am getting undefined label error in following code??
i am ignoring code as it is of no use...
loopLabel:
for(i=0;;i++)
{
{ some code;
}
{ come code;
}
}
if(condition)
{
...
4
votes
4answers
1k views
Why should I avoid using Java Label Statements?
Everywhere across the internet people say that you should avoid using label statements in java. However, I find them very useful in some cases, namely nested loops.
I cannot find satisfactory answers ...