寻VC++2005学习的电子书,最好.net讲得比较多

liaopan77 2007-04-26 04:29:03
寻VC++2005电子书,最好.net讲得比较多。
公司要用vc++2005了,想找本电子书来看看,最好是英文原版的,介绍得比较全面和经典,不要一堆项目例子的,那个没用(中文书大都这样,最近找书好烦)!
c++在.net下的windosw form开发,以及VC++中的ASP.NET开发比较详细的。
...全文
897 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
sunxp 2007-07-27
  • 打赏
  • 举报
回复
VC++2005入门经典
我有。网上可以下到。网址为
http://bbs.itepub.net/thread-148127-1-1.html
bluevox3000 2007-05-08
  • 打赏
  • 举报
回复
msdn is ENOUGH!
hbnucszhj 2007-05-05
  • 打赏
  • 举报
回复
我有 Visual C.NET完全手册.pdf
masterz 2007-04-26
  • 打赏
  • 举报
回复
http://msdn2.microsoft.com/en-us/library/ms173251(VS.80).aspx
Visual C++
Programming Guide
awai827 2007-04-26
  • 打赏
  • 举报
回复
为什么,请帮忙解答,刚刚开始学习C++的!
awai827 2007-04-26
  • 打赏
  • 举报
回复
#if ! defined _LOCATION_H_
#define _LOCATION_H_
class Location
{
Location();
Location(int xx,int yy);
~Location();
void move(int x1,int y1);
int GetX(){return x;}
int GetY(){return y;}
private:
int x,y;
};
#endif


#include "Location.h"
Location::Location()
{
x=y=0;
cout<<"Default Constructor called!"<<endl;
}
Location::Location(int xx,int yy)
{
x=xx;
y=yy;
cout<<"Constructor called!"<<endl;
}
Location::~Location()
{
cout<<"Destructor called!"<<endl;
}
Location::move(int x1,int y1)
{
x=x1;
y=y1;
}


出现了这样的问题:
无法打开包含文件:“Location.h”: No such file or directory

liaopan77 2007-04-26
  • 打赏
  • 举报
回复
有个VC++2005入门经典的那个不错,谁又电子书阿?

7,540

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 VC.NET
社区管理员
  • VC.NET社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧