C__数据类型的强制转换

32 篇文章 0 订阅

1)内存空间不同大小的基础类型可以强制类型转换,但是会丢失精度

示例代码

#include <cstdio>
#include <iostream>

using namespace std;

int main(){
	int a;
	char c = '0';
	a = (int)c;

	printf("%d\n", a);

	int d = 48;
	char e = (char)d;

	printf("%c\n", e);

	return 0;
}





2)***内存空间不同大小的非基础数据类型不能强制转换,实质是不存在适当的转换函数

#include <cstdio>
#include <iostream>

using namespace std;

struct pk{
	int d;
	int a;
};


int main(){

	pk b;
	int destory = (int)b;


	return 0;
}


数据大小相同的数据类型就可以进行强制类型转换,即使这两种数据类型是指针与结构体或者int等基础变量。

#include <cstdio>
#include <iostream>

using namespace std;

struct pk{
	int d;
	int a;
};


int main(){

	/*
	pk b;
	int destory = (int)b;
	*/
	int a = 6;
	int *b = &a;
	int c = (int)b;

	printf("%d %d\n", a, c);

	return 0;
}




强制类型转换并不能改变内存中实际存储的内容

#include <iostream>\
#include <csrdio>
using namespace std;


int main(){
	int a = -4;
	printf("Before convert, the number of a is %d\n", a);
	//int *p = &a;
	int *p = (int *)a;
	a = (unsigned int)a;
	//(cout << "test") << " kk" << endl;
	(cout << "After convert the number of point to the a memory is ") << a << endl;
	(cout << "After convert the number of point to the a memory is ") << (unsigned int )a << endl;

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值