indyrecord.java~2~

来自「大量java源程序」· JAVA~2~ 代码 · 共 30 行

JAVA~2~
30
字号
/*
 * @(#)IndyRecord
 *
 * Copyright (c) 1998 Karl Moss. All Rights Reserved.
 *
 * You may study, use, modify, and distribute this software for any
 * purpose provided that this copyright notice appears in all copies.
 *
 * This software is provided WITHOUT WARRANTY either expressed or
 * implied.
 *
 * @author  Karl Moss
 * @version 1.0
 * @date    17Apr98
 *
 */

package javaservlets.tunnel;

/**
  * <p>This object encapsulates a single Indianapolis 500 record
  */

public class IndyRecord implements java.io.Serializable
{
  public int year;
  public String driver;
  public double speed;
}

⌨️ 快捷键说明

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