propertyelement.java

来自「2004年robotcup世界冠军源代码」· Java 代码 · 共 16 行

JAVA
16
字号
// Copyright (C) 2002 Takeshi Morimoto <morimoto@takopen.cs.uec.ac.jp>// All rights reserved.package yab.io;public class PropertyElement {    public final int type;    public final int length;    //49    public final int[] value;        public PropertyElement(int type, int length, int[] value) {        this.type = type;        this.length = length;   //49        this.value = value;    }}

⌨️ 快捷键说明

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