如何跨文件使用C++中的const类型指针

类别:编程语言 点击:0 评论:0 推荐:

通过二个文件:main.cpp , fun.cpp 来测试const类型指针的跨文件使用

// main.cpp

#include <string.h>

char * const str=new char[100];

void fun();

void main()

{

     strcpy(str,"hello");

     fun();

}

 

// fun.cpp

#include <iostream.h>

extern char* const str;

void fun()

{

     cout<<str<<endl;

}

结果在连接时fun.obj无法找到str,请问这是为什么?

本文地址:http://com.8s8s.com/it/it30508.htm