| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 711 人关注过本帖
标题:[求助]大写写字母有区别吗
取消只看楼主 加入收藏
木叶轻歌
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-8-27
收藏
 问题点数:0 回复次数:1 
[求助]大写写字母有区别吗

我写了一段程序如下:
#include <iostream>
using namespace std;
class Point {
public:
Point(int xx=0, int yy=0) {X=xx; Y=yy; countP++; }
Point(Point &p);
int GetX() {return X;}
int GetY() {return Y;}
void getc() {cout<<" Object id="<<countP<<endl;}
private:
int X,Y;
static int countP;
};
Point::Point(Point &p)
{X=p.X;
Y=p.Y;
countP++;
}

int Point::countP=0;
void main()
{Point A(4,5);
cout<<"Point A,"<<A.GetX()<<","<<A.GetY();
A.getc();
Point B(A);
cout<<"Point B,"<<B.GetX()<<","<<B.GetY();
B.getc();
}

编译时总是出错,然后我把函数void getc改为void Getc,仅仅是变动了一个大小写字母,再编译是竟然没有错了,请问这是为什么呀!谢谢!

[此贴子已经被作者于2007-8-27 3:11:53编辑过]

搜索更多相关主题的帖子: 字母 
2007-08-27 03:11
木叶轻歌
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-8-27
收藏
得分:0 
getc()是系统库函数,
谢谢帮忙!
2007-08-28 20:52
快速回复:[求助]大写写字母有区别吗
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.103749 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved