导航:首页 > 源码编译 > 网页版通讯录源码html

网页版通讯录源码html

发布时间:2024-01-24 22:56:45

⑴ C++通讯录的源代码

分是万能的吗?
请客气些。

java小型通讯录源代码

package src;

public class TelBook {
// 姓名
String name;

// 家庭电话
Integer homePhone;

// 个人移动电话
Integer personalMobilePhone;

// 办公电话
Integer officePhone;

// 家庭地址
String homeAddress;

// 办公地址
String officeAddress;

// QQ号码
Integer qqNumber;

// MSN号码
String msn;

// 邮件
String email;

// 备注
String notes;

String getEmail() {
return email;
}

void setEmail(String email) {
this.email = email;
}

String getHomeAddress() {
return homeAddress;
}

void setHomeAddress(String homeAddress) {
this.homeAddress = homeAddress;
}

Integer getHomePhone() {
return homePhone;
}

void setHomePhone(Integer homePhone) {
this.homePhone = homePhone;
}

String getMsn() {
return msn;
}

void setMsn(String msn) {
this.msn = msn;
}

String getName() {
return name;
}

void setName(String name) {
this.name = name;
}

String getNotes() {
return notes;
}

void setNotes(String notes) {
this.notes = notes;
}

String getOfficeAddress() {
return officeAddress;
}

void setOfficeAddress(String officeAddress) {
this.officeAddress = officeAddress;
}

Integer getOfficePhone() {
return officePhone;
}

void setOfficePhone(Integer officePhone) {
this.officePhone = officePhone;
}

Integer getPersonalMobilePhone() {
return personalMobilePhone;
}

void setPersonalMobilePhone(Integer personalMobilePhone) {
this.personalMobilePhone = personalMobilePhone;
}

Integer getQqNumber() {
return qqNumber;
}

void setQqNumber(Integer qqNumber) {
this.qqNumber = qqNumber;
}

public TelBook() {

}

public TelBook(String name, Integer personalMobilePhone) {
this.setName(name);
this.setPersonalMobilePhone(personalMobilePhone);

}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
TelBook myfriend = new TelBook("张三", new Integer("13800138000"));

}

}

阅读全文

与网页版通讯录源码html相关的资料

热点内容
编程语言性能排行 浏览:336
深度学习推理引擎编译 浏览:515
cdr怎么转pdf格式 浏览:405
蒙商信用卡app里怎么修改收货地址 浏览:331
php高级面试题2017 浏览:937
紫色可以缓解压力吗 浏览:681
内核编译版本cpu架构 浏览:573
中级程序员面试题 浏览:162
在线压缩音乐文件 浏览:746
php删除非空文件夹 浏览:3
php你好世界代码 浏览:818
k270cz1压缩机功率 浏览:321
不知从哪里开始学习python 浏览:427
java打开文件方式 浏览:703
keil分段编译 浏览:27
app有了用户后怎么赚钱 浏览:306
程序员那么可爱20观看 浏览:999
一个数除以二的算法 浏览:403
如何选择php培训机构 浏览:982
app被移除管理了怎么弄 浏览:934