你们需要的帮助很少
我只是想知道如果字节是否可读,我已经搜索了但是没有找到
希望你能帮助我我有这个代码我需要的标签,如果字节是可读的
#include <windows.h>
#include <iostream>
#include <cstdlib>
#include <stdio.h>
void main()
{
float ramsize;
char *ch;
unsigned int j=128,readbyte;
long i;
MEMORYSTATUSEX statex;
statex.dwLength = sizeof (statex);
GlobalMemoryStatusEx (&statex);
ramsize = statex.ullTotalPhys;
for(i=0;i<ramsize;i = i+1)
{
ch = (char*) i;
readbyte = *ch;
// if readbyte is readable
printf("you have readable byte in address: %x , that contain in Binary:",&readbyte);
for(i=0;i<8;i++)
{
if(readbyte&j)
printf("1");
else
printf("0");
j=j>>1;
}
putchar('\n');
// if readbyte is not readable
printf("Sorry: you cant read this byte: %x",&readbyte);
}
}
答案 0 :(得分:0)
如果某个字节不可读,操作系统会向您的进程发送信号。您需要捕获该信号,否则您的程序将终止。
阅读课程教材中的信号。