pointer to ref of an array, and to the func that return a ref of an array

1.The expression A->B is exactly equivalent to (*A).B for builtin types. If a user-defined operator-> is provided,operator-> is called again on the value that it returns, recursively, until the operator-> is reached that returns a plain pointer. 


2

a.pointer to a array ref: (int[20])

int (&pRefArray)[20]

b. func that return an array ref

int (&pFuncReturnRefArray())[20]

c. typedef a funcpointer

typedef int (*FUN_POINTER)(void);

d. typedef a ref to a int[20]

typedef int (&REF_TO_INT_20)[20]



#include <iostream>

double test();
int aaaa(){return 100;}
typedef int (*FUN_POINTER)(void);


//typedef int (&ArrayRef)[10];
void test_typedef_pointer()
{
	
	FUN_POINTER ff = aaaa;
	std::cout<<ff()<<std::endl;
}


int global_array[10];
int (& fun_return_array_ref())[10]
{
	return global_array;
}
void test_return_array_ref()
{
	global_array[3] = 200;	
	int (&local_array)[10] = fun_return_array_ref();
	std::cout<<local_array[3]<<std::endl;
}

//char (&ArraySizeImpl(T (&)[N]))[N]
typedef int (&ARRAY_REF)[10];
void test_typedef_arrayref()
{
	//int a[10];
	//int(&ref2)[10] = a;
	ARRAY_REF (*fun)() = fun_return_array_ref;
	global_array[3] = 220;
	int (&local_array)[10] = fun();
	std::cout<<local_array[3]<<std::endl;	
}
int main(){
//std::cout<<sizeof(test())<<std::endl;
test_typedef_pointer();
test_return_array_ref();
test_typedef_arrayref();
return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值