如果其格式与某些规则不匹配,如何使您的代码无法编译?例如(C# 语言):
if (a < b)
{
// <-- build error with message "empty line"
k = j + h;
}
或者
public void Method(int a, int name) // <-- build error with message "parameter name 'a' is too short"
{
//...
}