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

📄 databaseobject.java

📁 利用java对数据库系统进行分布式管理.支持数据库服务器查找,支持多个数据库的连接,实现数据库服务器与客户端功能.
💻 JAVA
字号:
public class DatabaseObject{	private int value;	private String name;	private boolean modified;	public DatabaseObject(int value)	{		this.value = value;		this.modified = false;	}		public DatabaseObject(int value, String name)	{		this.value = value;		this.name = name;		this.modified = false;	}		public DatabaseObject(int value, String name, boolean mod)	{		this.value = value;		this.name = name;		this.modified = mod;	}	public int getValue()	{		return this.value;	}	public void setValue(int value)	{		this.value = value;		this.modified = true;	}		public String getName()	{		return this.name;	}	public void setName(String name)	{		this.name = name;	}	public boolean isModified()	{		return modified;	}}

⌨️ 快捷键说明

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