猜纸牌游戏之二 实体类
Posted tea_year
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜纸牌游戏之二 实体类相关的知识,希望对你有一定的参考价值。
该实体类用于实现定义纸牌类,方便进行数据的存储,以便存放到SQLite之中!
package com.example.azhipai; public class Zhipai { private int id; private String name; private int examcm; public Zhipai() { super(); } public Zhipai(int id, String name, int examcm) { super(); this.id = id; this.name = name; this.examcm = examcm; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getExamcm() { return examcm; } public void setExamcm(int examcm) { this.examcm = examcm; } }
以上是关于猜纸牌游戏之二 实体类的主要内容,如果未能解决你的问题,请参考以下文章