Java では、文字列としてのソース コードと中かっこの開始を指定して、Java ソース コードのサンプルに対応する中かっこを生成することは可能ですか?
public class FindFunctionStartAndEnd{
public static Object findCorrespondingCurlyBrace(String sourceCode, string startingPosition){
//return the string position that corresponds to the matching curly brace
//the input string should be the source code of a Java class
//if sourceCode is not valid Java code, return false
}
}