c++由local function definitions are illegal,引起了一系列的错误,求高手改错啊·
本来只有localfunctiondefinitionsareillegal,这一个错误,可是一改完就是一大堆的错冒出来了~这是我们的期末大作业,来不及了,望大侠们伸伸援...
本来只有local function definitions are illegal,这一个错误,可是一改完就是一大堆的错冒出来了~这是我们的期末大作业,来不及了,望大侠们伸伸援手帮一把啊 ~~~
代码太长,先发一半,另一半在马上连接出来
#include <iostream>
#include<iomanip>
#include <string>
using namespace std;
class SBUS{
protected:
float price;
char style[30];
public :
SBUS (){
price=0.0;
style[0]='\0';
}
SBUS (float Price,char Style[]){
price=Price;
strcpy(style,Style);
}
~SBUS(){}
}; //定义了车价和车类型的基类
class BUS:public SBUS{
int no;
char stop[30][20];
int start;
int end;
public :
BUS(){
no=0;
stop[0][0]='\0'; //待定
start=0;
end=0;
}
BUS(float Price,char Style[],int No,char Stop[30][20],int Start,int End){
price=Price;
strcpy(style,Style);
no=No;
int i;
for(i=0;i<30;i++)
strcpy(stop[i],Stop[i]);
start=Start;
end=End;
}
~BUS(){}
void Sno(int No){
no=No;
}
void Sprice(float Price){
price=Price;
}
void Sstyle(char Style[]){
strcpy(style,Style);
}
void Sstop(char Stop[30][20]){
int i;
for(i=0;i<30;i++)
strcpy(stop[i],Stop[i]);
}
void Sstart(int Start){
start=Start;
}
void Send(int End){
end=End;
}
float Gprice(){
return price;
}
char * Gstyle(){
return style;
}
int Gno(){
return no;
}
char * Gstop(){
int i;
for(i=0;i<30;i++)
return stop[i];
}
int Gstart(){
return start;
}
int Gend(){
return end;
}
void showT(){
cout<<setw(6)<<"车号"<<setw(6)<<"价格"<<setw(6)<<"首发时间"<<setw(6)<<"末班时间"<<setw(6)<<"车型"<<endl;
cout<<setw(6)<<Gno()<<setw(6)<<Gprice()<<setw(6)<<Gstart()<<setw(6)<<Gend()<<setw(6)<<Gstyle()<<endl;
cout<<"车站"<<':';
cout<<Gstop()<<endl;
}
}; //派生出公交类
void dele(int x,int N){ //删除公交信息,重组BUS数组
int p;
p=find(int x);
for(;p<N;p++)
BUS[p]=BUS[p+1];}
void dele(int x,int N){ //删除公交信息,重组BUS数组
int p;
p=find(int x);
for(;p<N;p++)
BUS[p]=BUS[p+1];} 展开
代码太长,先发一半,另一半在马上连接出来
#include <iostream>
#include<iomanip>
#include <string>
using namespace std;
class SBUS{
protected:
float price;
char style[30];
public :
SBUS (){
price=0.0;
style[0]='\0';
}
SBUS (float Price,char Style[]){
price=Price;
strcpy(style,Style);
}
~SBUS(){}
}; //定义了车价和车类型的基类
class BUS:public SBUS{
int no;
char stop[30][20];
int start;
int end;
public :
BUS(){
no=0;
stop[0][0]='\0'; //待定
start=0;
end=0;
}
BUS(float Price,char Style[],int No,char Stop[30][20],int Start,int End){
price=Price;
strcpy(style,Style);
no=No;
int i;
for(i=0;i<30;i++)
strcpy(stop[i],Stop[i]);
start=Start;
end=End;
}
~BUS(){}
void Sno(int No){
no=No;
}
void Sprice(float Price){
price=Price;
}
void Sstyle(char Style[]){
strcpy(style,Style);
}
void Sstop(char Stop[30][20]){
int i;
for(i=0;i<30;i++)
strcpy(stop[i],Stop[i]);
}
void Sstart(int Start){
start=Start;
}
void Send(int End){
end=End;
}
float Gprice(){
return price;
}
char * Gstyle(){
return style;
}
int Gno(){
return no;
}
char * Gstop(){
int i;
for(i=0;i<30;i++)
return stop[i];
}
int Gstart(){
return start;
}
int Gend(){
return end;
}
void showT(){
cout<<setw(6)<<"车号"<<setw(6)<<"价格"<<setw(6)<<"首发时间"<<setw(6)<<"末班时间"<<setw(6)<<"车型"<<endl;
cout<<setw(6)<<Gno()<<setw(6)<<Gprice()<<setw(6)<<Gstart()<<setw(6)<<Gend()<<setw(6)<<Gstyle()<<endl;
cout<<"车站"<<':';
cout<<Gstop()<<endl;
}
}; //派生出公交类
void dele(int x,int N){ //删除公交信息,重组BUS数组
int p;
p=find(int x);
for(;p<N;p++)
BUS[p]=BUS[p+1];}
void dele(int x,int N){ //删除公交信息,重组BUS数组
int p;
p=find(int x);
for(;p<N;p++)
BUS[p]=BUS[p+1];} 展开
3个回答
2011-07-06
展开全部
本地函数定义非法。。错误提示很清楚啊。。。看一下你的函数定义。。。
另外,团IDC网上有许多产品团购,便宜有口碑
另外,团IDC网上有许多产品团购,便宜有口碑
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
本地函数定义非法。。错误提示很清楚啊。。。看一下你的函数定义。。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
本地函数定义非法。。错误提示很清楚啊。。。看一下你的函数定义。。。
追问
函数定义非法是的,我发现前面的大花括号没加,可是加了以后,错就千奇百怪了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询