0
以下のコードは、Webサービスの応答フォーマットです。このクラスには2つの参照変数 〜2つの内部静的クラスがあります。 効率的な方法で読む方法を教えてください。内部静的クラスとそのバラバラを読み取るベストプラクティス
public class DataResponse {
protected DataResponse.Head head ;
protected DataResponse.Result result ;
public static class Result {
protected List<DataResponse.Result.Record> record;
public static class Record {
protected String businesstypec;
protected String part
// several other variables
public static class PARTR {
protected String prefix;
protected String suffix;
}
}
public static class Head {
// some more variables
}
// please assume getter and setters for head,result,record,prefix and suffix variables
}
「効率的な方法で読む」とはどういう意味ですか? –
@kirk Woll:疑問の質問...上記のコードを読むためのシンプルで優れた方法.... – aditya86c