如何引用另外一个文件中的串, 顺便说说void print();和(void)print();的区别

     由于需要, 所以小写一下。


     main.cpp中的代码为:

#include <iostream>
using namespace std;

extern char str[];
int main()
{
	cout << str << endl;
	return 0;
}

     test.cpp中的代码为:

char str[100] = "abcdefg";

     程序的结果为:abcdefg



     下一道菜:

     main.cpp

#include <iostream>
using namespace std;
void print();

extern char str[];
int main()
{
	cout << str << endl;
	// cout << sizeof(str) << endl;  //编译错误
	cout << strlen(str) << endl; // 7

	strcpy(str, "xyz");
	cout << str << endl;

	print(); // 输出hello world, xyz,  可见, 上面的strcpy改变了test.cpp中的值
	return 0;
}


    test.cpp

#include <stdio.h>
char str[100] = "abcdefg";

void print()
{
	printf("hello world, %s\n", str);
}


      输出结果:

abcdefg
7
xyz
hello world, xyz


     

       最后看一下void print();和(void)print();的区别:


       void print();是生命, 而(void)print();是调用, 在代码中非常常见, 为什么要加(void)呢, 多数为了通过静态检查工具的检查。


     

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值