objectelement.java

来自「机器人设计的Java源程序,提供给大家参考参考」· Java 代码 · 共 18 行

JAVA
18
字号
// 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;    public final int id;    public final PropertyElement[] properties;    public ObjectElement(int type, int length, int id, PropertyElement[] properties) {        this.type = type;	this.length = length;        this.id = id;        this.properties = properties;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?