设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 667|回复: 7
打印 上一主题 下一主题

[求助]指针问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 02:03:33 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
//建立一个对象数组,内放5个学生数据,用指针指向首元素,输出第1,3,5个学生的数据
#include <iostream>
using namespace std;
class Student
{ public:
Student(int,int);

private:
int num;
int score;
};
Student::Student(int n,int s):num(n),score(s){}
int main()
{ Student a[5]={
Student(1,70),
Student(2,65),
Student(3,80),
Student(4,90),
Student(5,75)
};
int i;
int *p=&a[];
for(i=0;i<5;i++)
if(i%2==0)
p=p->a[i];
cout<<*p<<endl;
return 0;

}
21 D:\Dev-Cpp\program\cpp3.cpp expected primary-expression before ']' token
24 D:\Dev-Cpp\program\cpp3.cpp `a' is not a type
24 D:\Dev-Cpp\program\cpp3.cpp request for member of non-aggregate type before '[' token




用函数指向数组首元素怎么写啊? 改了好多次都不行
帮忙改下!!!谢谢
2#
发表于 2009-11-4 02:03:34 | 只看该作者
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,int s)
{
num = n;
score = s;
}
void Print()
{
cout<<"num ="<<num<<endl;
cout<<"socre ="<<score<<endl;
}
private:
int num;
int score;
};
int main()
{
Student a[5]={
Student(1,70),
Student(2,65),
Student(3,80),
Student(4,90),
Student(5,75)
};
int i;
Student *p;
p = a;
for(i=0;i<5;i++)
if(i%2==0)
(p+i)->Print();
return 0;

}
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-4 02:03:35 | 只看该作者
二楼说的对。顶~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-4 02:03:36 | 只看该作者
#include <iostream>
using namespace std;
class Student
{ public:
Student(int,int);

private:
int num;
int score;
};
Student::Student(int n,int s):num(n),score(s){}
int main()
{ Student a[5]={
Student(1,70),
Student(2,65),
Student(3,80),
Student(4,90),
Student(5,75)
};
int i;
Student *p=a;
for(i=0;i<5;i++)
if(i%2==0)
p=&a[i];
cout<<p<<endl;
return 0;

}
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-4 02:03:37 | 只看该作者
#include <iostream>
using namespace std;
class Student
{ public:
Student(int,int);
int getsum()
{return num;}
int getscore()
{return score;}//private 变量要通过成员函数和友元函数访问
private:
int num;
int score;
};
Student::Student(int n,int s):num(n),score(s){}
int main()
{ Student a[5]={
Student(1,70),
Student(2,65),
Student(3,80),
Student(4,90),
Student(5,75)
};
int i;
Student *p=a;
for(i=0;i<5;i++)
if(i%2==0)
//p=&a[i];
cout<<a[i].getscore()<<' '<<a[i].getsum()<<endl;
return 0;

}
//21 D:\Dev-Cpp\program\cpp3.cpp expected primary-expression before ']' token
// 24 D:\Dev-Cpp\program\cpp3.cpp `a' is not a type
//24 D:\Dev-Cpp\program\cpp3.cpp request for member of non-aggregate type before '[' token

// 用函数指向数组首元素怎么写啊? 改了好多次都不行
// 帮忙改下!!!谢谢
回复 支持 反对

使用道具 举报

6#
发表于 2009-11-4 02:03:38 | 只看该作者
对于一维数组第i个元素的地址为:&a[i] 或a +i;
数组的首地址可以这样表示:a 或 &ap0];
数组名a代表的就是元素a[0]的地址,即&a[0]。
回复 支持 反对

使用道具 举报

7#
发表于 2009-11-4 02:03:39 | 只看该作者
hehe ,楼上的都对,这个问题比较容易。
主要是关于数组名,首地址,等问题的注意
我就不多多废话了
回复 支持 反对

使用道具 举报

8#
发表于 2009-11-4 02:03:40 | 只看该作者
学习中
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 00:28 , Processed in 0.075582 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表