public class Once
extends java.lang.Object
StringBuilder b = new StringBuilder();
Once once = new Once();
for (String s : strings) {
if (once.once()) {
b.append(", ");
}
b.append(s);
}
Created by covers1624 on 5/9/21.
| Constructor and Description |
|---|
Once() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
once() |
void |
reset() |