I’d like to use an infinite loop in Java: for (;;) and I think it would look amusing if I could replace that ';;' with the variable 'ever'
like this:
String ever = ";;";
for(ever){
...
}
Is such a thing possible in Java?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No it is not possible.
The closest you can come is this: