免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2220 | 回复: 3
打印 上一主题 下一主题

[C++] [求助]C++变量的声明与定义题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-22 12:39 |只看该作者 |倒序浏览
TC++PL 5.9
1. (*1) Write declarations for the following: a pointer to a character, an array of 10 integers, a reference to an array of 10 integers, a pointer to an array of character strings, a pointer to a pointer to a character, a constant integer, a pointer to a constant integer, and a constant pointer to an integer. Initialize each one.

3. (*1) Use type def to define the types unsigned char , const unsigned char , pointer to integer, pointer to pointer to char , pointer to arrays of char , array of 7 pointers to int , pointer to an array of 7 pointers to int , and array of 8 arrays of 7 pointers to int .


其中,红色部分不会做!
哪位帮帮忙!谢谢!
1.
a reference to an array of 10 integers(一个到包含10个整数的数组的引用)
a pointer to an array of character strings(一个到字符串的数组的指针)

3.
pointer to arrays of char
pointer to an array of 7 pointers to int
array of 8 arrays of 7 pointers to int

论坛徽章:
0
2 [报告]
发表于 2006-05-22 15:50 |只看该作者
I'am trying...

a reference to an array of 10 integers(一个到包含10个整数的数组的引用)
a pointer to an array of character strings(一个到字符串的数组的指针)
  1. int (&arr)[10];
  2. string (*parr)[];
复制代码


pointer to arrays of char
pointer to an array of 7 pointers to int
array of 8 arrays of 7 pointers to int
  1. typedef char (*parr)[];
  2. typedef int *(*parr)[7];
  3. typedef int *arr[8][7];
复制代码


man cdecl

论坛徽章:
0
3 [报告]
发表于 2006-05-22 18:54 |只看该作者
十分感谢kernelxu

1.
//a pointer to a character
char* pc;

//an array of 10 integers
int array[10];

//a reference to an array of 10 integers
int (&r)[10] = array;

//a pointer to an array of character strings
char* (*p)[]; // 如何赋值呢?
//char* tmp[] = {
//        "a pointer", "to", "an array",
//        "of", "character strings"
//};
//p = tmp;


//a pointer to a pointer to a character
char** ppc;

//a constant integer
const int i = 0;

//a pointer to a constant integer
const int* pi = &i;

//a constant pointer to an integer
int *const pci = array;


3.
//unsigned char
typedef unsigned char UCHAR;

//const unsigned char
typedef const unsigned char CUCHAR;

//pointer to integer
typedef int* PI;

//pointer to pointer to char
typedef char** PPC;

//pointer to arrays of char
typedef char (*PCARR)[];

//array of 7 pointers to int
typedef int* PI7[7];

//pointer to an array of 7 pointers to int
typedef int* (*PPI7)[7];

//array of 8 arrays of 7 pointers to int
typedef int* PI87[8][7];

论坛徽章:
0
4 [报告]
发表于 2006-05-22 23:37 |只看该作者

回复 1楼 poqiu 的帖子

a reference to an array of 10 integers(一个到包含10个整数的数组的引用)
int& i[10]
a pointer to an array of character strings(一个到字符串的数组的指针)
char *argv[]
3.
pointer to arrays of char
char *args
pointer to an array of 7 pointers to int
int *int_array[7].
array of 8 arrays of 7 pointers to int
int *int_arrays[7][8]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP