⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lending.java

📁 本人写的一个简单VCD租赁系统
💻 JAVA
字号:
//************************************************//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -