Java中的记录类型

| 我如何在Java中表示记录类型? 例子
TYPE Pattern = RECORD

                 Semantique:varchar;
                 type:varchar;
                 chemin:varchar;
               END;
    
已邀请:
public class Record {
  String semantique;
  String type;
  String chemin;
}
如果这将是一个bean,则可能需要getter和setter。这些看起来像:
public void setType(String type){ this.type=type; }

public String getType() { return type; }
    
您可以大致将其翻译成Java:
public class Pattern {
    public String Semantique;
    public String type;
    public String chemin;
}
但是,这在细节上可能与您要翻译的任何语言(帕斯卡?)完全不同。例如,您不能直接将Java类的实例读取和写入磁盘文件。     

要回复问题请先登录注册