objectelement.java
来自「2004年robotcup世界冠军源代码」· Java 代码 · 共 20 行
JAVA
20 行
// Copyright (C) 2002 Takeshi Morimoto <morimoto@takopen.cs.uec.ac.jp>// All rights reserved.package yab.io;public class ObjectElement { public final int type; public final int length; //49 public final int id; public final PropertyElement[] properties; public ObjectElement(int type, int length, int id, PropertyElement[] properties) { this.type = type; this.length = length; //49 this.id = id; this.properties = properties; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?