1.编写,定义一个类,类中包含一些属性,行为 如建立学生类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.编写,定义一个类,类中包含一些属性,行为 如建立学生类相关的知识,希望对你有一定的参考价值。
1.编写,定义一个类,类中包含一些属性,行为
如建立学生类为例子
这是面向对象的一道编程题 我应该如何作答 用c++
public:
CStudent(); //构造函数
~CStudent(); //析构函数
void SetAge(int nAge); //成员函数
int GetAge();
void SetHeight(int nHeight);
int GetHeight();
private:
int m_nAge; //成员变量
int m_nHeight;
;
CStudent::CStudent()
: m_nAge(18) //初始化列表
, m_nHeight(170)
CStudent::~CStudent()
void CStudent::SetAge(int nAge)
m_nAge = nAge;
int CStudent::GetAge()
return m_nAge;
void CStudent::SetHeight(int nHeight)
m_nHeight = nHeight;
int CStudent::GetHeight()
return m_nHeight;
参考技术A 当然是随便写个类的定义,加点构造函数和输出输入的接口
class student
char name[100] ;//string name
char stunum[100];//....
int age;
student(char *iname, char *istunum, int iage)
strcpy(name, iname);
strcpy(stunum, istunum);
age=iage;
void Show()
cout<<name<<" "<<stunum<<" "<<age<<endl;
int GetAge() return age;
char * GetStunum() return stunum;
char * GetName() return name;
; 参考技术B class student
//属性
public:
char name[20];
int age;
//方法
public:
void study();
;
window location跳转
"top.location.href"是最外层的页面跳转
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转.
location是window对象的属性,而所有的网页下的对象都是属于window作用域链中(这是顶级作用域),所以使用时是可以省略window。而top是指向顶级窗口对象,parent是指向父级窗口对象。
window.location是window对象的属性,而window.open是window对象的方法
window.location是你对当前浏览器窗口的URL地址对象的参考!
window.open是用来打开一个新窗口的函数!
window.open()是可以在一个网站上打开另外的一个网站的地址
而window.location()是只能在一个网站中打开本网站的网页
window.location或window.open如何指定target?
这是一个经常遇到的问题,特别是在用frame框架的时候
解决办法:
window.location 改为 top.location 即可在顶部链接到指定页
或
window.open("你的网址","_top");
<input type="button" value="新窗口打开" onclick="window.open(‘http://www.baidu.com‘)">
<input type="button" value="当前页打开" onclick="top.location=‘http://www.baidu.com‘,‘_top‘">
以上是关于1.编写,定义一个类,类中包含一些属性,行为 如建立学生类的主要内容,如果未能解决你的问题,请参考以下文章