22.C++增强C

C语言的写法

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include "iostream"
using namespace std;

//1、全局变量检测增强,下面的声明会在C++中报错,使用a的时候会报重定义错误
int a;
int a = 10;

//2、函数检测增强,C++函数调用的时候参数个数必须一致
int getRectS(w, h)
{
}
void test02()
{
	getRectS(10, 10, 10); //c语言编译通过
}

//3、类型转换检测增强
void test03()
{
	char * p = malloc(sizeof(64)); //malloc返回值是void*
}

//4、struct 增强
struct Person
{
	int m_Age;
	//void plusAge(); //c语言中struct不可以加函数
};
void test04()
{
	struct Person p1; //使用时候必须加入struct关键字
}

//5、 bool类型增强 C语言中没有bool类型
//bool flag;

//6、三目运算符增强
void test06()
{
	int a = 10;
	int b = 20;

	printf("ret = %d \n", a > b ? a : b); //ret=20

	//a > b ? a : b = 100; // 20 = 100 C语言返回的是值,c语言编译错误

	//C语言中想模仿C++写
	*(a > b ? &a : &b) = 100;
	printf("a = %d ,b = %d \n", a, b);//输出a = 10, b = 100

}

//7、 const增强
const int m_A = 10; //收到保护,不可以改
void test07()
{

	//m_A = 100;
	const int m_B = 20; //伪常量,可以通过指针被被修改
	//m_B = 100;

	int * p = (int *)&m_B;
	*p = 200;
	printf("*p = %d , m_B = %d \n", *p, m_B); //*p = 200 m_B = 200

	//int arr[m_B]; 不可以初始化数组

}


int main(){

	//	test06();

	//test07();
	cout << "a===" << a << endl;

	system("pause");
	return EXIT_SUCCESS;
}

C++的写法

#define _CRT_SECURE_NO_WARNINGS
#include "iostream"
using namespace std;

//1、全局变量检测增强
//int a;
int a = 10;

//2、函数检测增强 ,参数类型增强,返回值检测增强,函数调用参数检测增强
int getRectS(int w, int h)
{
	return w*h;
}
void test02()
{
	getRectS(10, 10);
}


//3、类型转换检测增强
void test03()
{
	char * p = (char*)malloc(sizeof(64)); //malloc返回值是void*
}


//4、struct 增强
struct Person
{
	int m_Age;
	void plusAge(){ m_Age++; }; //c++中struct可以加函数
};
void test04()
{
	Person p1; //使用时候可以不加struct关键字
	p1.m_Age = 10;
	p1.plusAge();
	cout << p1.m_Age << endl;
}

//5、 bool类型增强 C语言中没有bool类型
bool flag = true; //只有真或假 true代表 真(非0)  false 代表假(0)
void test05()
{
	cout << sizeof(bool) << endl;   //1

	flag = 100;
	//bool类型 非0的值 转为 1  ,0就转为0
	cout << flag << endl;   //1
}

//6、三目运算符增强
void test06()
{
	int a = 10;
	int b = 20;

	cout << "ret = " << (a < b ? a : b) << endl; //ret = 10

	(a < b ? a : b) = 100; //a = 100 C++中返回的是变量a

	cout << "a = " << a << endl;// a = 100
	cout << "b = " << b << endl;//b = 20
}


const int m_A = 10; //收到保护,不可以改
void test07()
{

	const int m_B = 20; //真正常量
	//m_B = 100;

	int * p = (int *)&m_B;
	*p = 200;
	cout << "*p = " << *p << endl; //*p = 200
	cout << "m_B = " << m_B << endl;//"m_B = 20

	int arr[m_B]; //可以初始化数组


}


int main(){

	//test04();

	// test05();

	 //test06();
	test07();

	system("pause");
	return EXIT_SUCCESS;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值