lending.java

来自「本人写的一个简单VCD租赁系统」· Java 代码 · 共 31 行

JAVA
31
字号
//************************************************//Lending.java//This class is used to describe the structure for//a single lending record.//Created by Xiaobin Lin               2/Dec/2004//************************************************package Main;import java.io.*;public class Lending implements Serializable{        // Creates a new instance of Lending    public Lending(int no, int index) {        memberNo = no;        videoIndex = index;    }        public int getMemberNo(){        return memberNo;    }        public int getVideoIndex(){        return videoIndex;    }        private int memberNo;    private int videoIndex;}

⌨️ 快捷键说明

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