char *p; int *p; double *p; sizeof(p) sizeof(*p) 看看大小是多少。
时间: 2023-08-16 19:09:51 浏览: 156
对于不同类型的指针,`sizeof(p)`返回指针本身的大小,而`sizeof(*p)`返回指针所指向的对象的大小。
1. 对于`char *p`,`sizeof(p)`通常是4或8(根据系统的位数而定),因为指针的大小是与系统位数相关的。
`sizeof(*p)`是1,因为`char`类型占用一个字节。
2. 对于`int *p`,`sizeof(p)`通常是4或8,同样取决于系统的位数。
`sizeof(*p)`通常是4,因为`int`类型占用4个字节。
3. 对于`double *p`,`sizeof(p)`通常是4或8,取决于系统的位数。
`sizeof(*p)`通常是8,因为`double`类型占用8个字节。
需要注意的是,指针的大小在不同系统和编译器上可能会有所不同。
相关问题
void Zoom(const char *filename,double lx,double ly){ FILE *fp = fopen(filename,"rb"); if (fp == NULL) printf("Error"); BITMAPFILEHEADER fileHead; fread(&fileHead, sizeof(BITMAPFILEHEADER), 1, fp); BITMAPINFOHEADER infoHead; fread(&infoHead, sizeof(BITMAPINFOHEADER), 1, fp); int width = infoHead.biWidth; int height = infoHead.biHeight; int biCount = infoHead.biBitCount; RGBQUAD *pColorTable; int pColorTableSize = 0; pColorTable = new RGBQUAD[256]; fread(pColorTable, sizeof(RGBQUAD), 256, fp); pColorTableSize = 1024; unsigned char *pBmpBuf; int lineByte = (width*biCount / 8 + 3) / 4 * 4; pBmpBuf = new unsigned char[lineByte*height]; fread(pBmpBuf, lineByte*height, 1, fp); fclose(fp); int dstWidth = round(double(lx*width)); int dstHeight = round(double(ly*height)); int lineByte2 = (dstWidth*biCount / 8 + 3) / 4 * 4; unsigned char*pBmpBuf2; pBmpBuf2 = new unsigned char[lineByte2*dstHeight]; for (int i = 0; i < dstHeight; ++i){ for (int j = 0; j < dstWidth; ++j){ unsigned char *p; p = (unsigned char *)(pBmpBuf2 + lineByte2*i + j); (*p) = 255; } } int x = 0; int y = 0; for (int i = 0; i < height; ++i){ for (int j = 0; j < width; ++j){ unsigned char *p1, *p2; x = round(double(lx*j)); y = round(double(ly*i)); p1 = (unsigned char *)(pBmpBuf + i*lineByte + j); p2 = (unsigned char *)(pBmpBuf2 + y*lineByte2 + x); (*p2) = (*p1); } }
这段代码是一个图像缩放的函数,下面是对代码的中文注释:
```cpp
// 将指定文件中的图像进行缩放后保存
// 参数filename为图像文件名,lx和ly为横向和纵向的缩放比例
void Zoom(const char *filename, double lx, double ly){
FILE *fp = fopen(filename,"rb");
if (fp == NULL)
printf("Error");
// 读取位图文件头和位图信息头
BITMAPFILEHEADER fileHead;
fread(&fileHead, sizeof(BITMAPFILEHEADER), 1, fp);
BITMAPINFOHEADER infoHead;
fread(&infoHead, sizeof(BITMAPINFOHEADER), 1, fp);
// 获取图像的宽度、高度和颜色位数
int width = infoHead.biWidth;
int height = infoHead.biHeight;
int biCount = infoHead.biBitCount;
RGBQUAD *pColorTable;
int pColorTableSize = 0;
// 读取调色板数据
pColorTable = new RGBQUAD[256];
fread(pColorTable, sizeof(RGBQUAD), 256, fp);
pColorTableSize = 1024;
// 读取图像数据
unsigned char *pBmpBuf;
int lineByte = (width * biCount / 8 + 3) / 4 * 4;
pBmpBuf = new unsigned char[lineByte * height];
fread(pBmpBuf, lineByte * height, 1, fp);
fclose(fp);
// 计算缩放后的图像宽度和高度,并计算缩放后的每行字节数
int dstWidth = round(double(lx * width));
int dstHeight = round(double(ly * height));
int lineByte2 = (dstWidth * biCount / 8 + 3) / 4 * 4;
// 创建缩放后的图像数据缓冲区,并初始化为白色
unsigned char *pBmpBuf2;
pBmpBuf2 = new unsigned char[lineByte2 * dstHeight];
for (int i = 0; i < dstHeight; ++i){
for (int j = 0; j < dstWidth; ++j){
unsigned char *p;
p = (unsigned char *)(pBmpBuf2 + lineByte2 * i + j);
(*p) = 255;
}
}
// 对每个像素进行缩放处理
int x = 0;
int y = 0;
for (int i = 0; i < height; ++i){
for (int j = 0; j < width; ++j){
unsigned char *p1, *p2;
x = round(double(lx * j));
y = round(double(ly * i));
p1 = (unsigned char *)(pBmpBuf + i * lineByte + j);
p2 = (unsigned char *)(pBmpBuf2 + y * lineByte2 + x);
(*p2) = (*p1);
}
}
// 将缩放后的图像数据保存到新文件中
FILE *fp2 = fopen("zoomed.bmp", "wb");
if (fp2 == NULL)
printf("Error");
fwrite(&fileHead, sizeof(BITMAPFILEHEADER), 1, fp2);
fwrite(&infoHead, sizeof(BITMAPINFOHEADER), 1, fp2);
fwrite(pColorTable, sizeof(RGBQUAD), 256, fp2);
fwrite(pBmpBuf2, lineByte2 * dstHeight, 1, fp2);
fclose(fp2);
// 释放内存
delete[] pColorTable;
delete[] pBmpBuf;
delete[] pBmpBuf2;
}
```
希望这些注释能帮助你理解代码的功能和实现过程。如果还有其他问题,请随时提问。
请运行一下下面的代码int main() { int a = 10; int * p; p = &a; //指针指向数据a的地址 cout << *p << endl; //* 解引用 cout << sizeof(p) << endl; cout << sizeof(char *) << endl; cout << sizeof(float *) << endl; cout << sizeof(double *) << endl; system("pause"); return 0; }
好的,这段代码的作用是定义一个整型变量 a 并赋值为 10,然后定义一个整型指针 p,将其指向 a 的地址,输出指针所指向的数据(即 a 的值),以及指针 p 的大小,以及不同类型指针的大小。
代码如下:
```c++
#include <iostream>
using namespace std;
int main() {
int a = 10;
int *p;
p = &a;
cout << *p << endl;
cout << sizeof(p) << endl;
cout << sizeof(char *) << endl;
cout << sizeof(float *) << endl;
cout << sizeof(double *) << endl;
system("pause");
return 0;
}
```
运行结果为:
```
10
8
8
8
8
请按任意键继续. . .
```
其中,指针 p 的大小为 8 字节,这是因为在 64 位操作系统中,指针的大小为 8 字节;而 char、float、double 类型的指针大小也均为 8 字节。
阅读全文