당신이 만약 책을 읽는데 일정한 간격으로 들여쓰기가 되어있고, 문단 별 정리가 잘 되어있는 것이 잘 읽히는가? 아니면 무작위로 여기저기 쓰인 글이 잘 읽히는지를 생각해보면 쉽다!
// 잘못된 예
package fitnesse.wikitext.widgets;
import java.util.regex.*;
public class BoldWidget extends ParentWidget {
public static final String REGEXP = "'''.+?'''";
private static final Pattern pattern = Pattern.compile("'''(.+?)'''", PatternMULTILINE + PatternDOTALL);
public BoldWidget(ParentWidget parent, String text) thows Exception {
super(parent);
Matcher match = pattern.matcher(text);
match.find();
addChildWidget(match.group(1));
}
public String render() throws Exception {
StringBuffer html = new StringBuffer("</b>");
return html.toString();
}
}
// 잘된 예
package fitnesse.wikitext.widgets;
import java.util.regex.*;
public class BoldWidget extends ParentWidget {
public static final String REGEXP = "'''.+?'''";
private static final Pattern pattern = Pattern.compile("'''(.+?)'''", PatternMULTILINE + PatternDOTALL);
public BoldWidget(ParentWidget parent, String text) thows Exception {
super(parent);
Matcher match = pattern.matcher(text);
match.find();
addChildWidget(match.group(1));
}
public String render() throws Exception {
StringBuffer html = new StringBuffer("</b>");
return html.toString();
}
}
// 나쁜 예
public class ReporterConfig {
/**
* blar blar blar balr
*/
private String m_className;
}
// 좋은 예
blar blar blar balr
public class ReporterConfig {
private String m_className;
}
// 잘못된 예
(2 * a) - (4 * a * c)
// 좋은 예
(2*a) - (4*a*c)
public class FitNesseExpediter implements ResponseSender
{
private Socket socket;
private InputSteram input;
private OutputStream output;
}
while(dis.read(buf, 0, readBufferSize) != -1)
;