uint8_t 类型的参数与 char* 类型的参数不兼容
argument of type uint8_t is incompatible with parameter of type char*
我最近一直遇到标题错误,我不太确定自己做错了什么,有人有什么想法吗?相关代码如下
Rom.h
//Rom.h
#pragma once
#include <fstream>
struct ROM {
uint8_t* memblock;
std::fstream rom;
std::streampos size;
int flag;
void ROM::LoadROM(std::string path, int flag);
void ROM::BinaryDump(std::string path, std::streampos size);
}
Rom.cpp
//Rom.cpp
#include <iostream>
#include "Rom.h"
void ROM::LoadROM(std::string path, int flag) {
this->rom.open(path, std::ios::in | std::ios::binary | std::ios::ate);
if (rom.is_open()) {
this->size = rom.tellg();
std::cout << "\nThe Rom is " << rom.tellg() << " byte(s) long." << std::endl;
this->memblock = new uint8_t[(unsigned int)this->size];
std::cout << rom.tellg() << " Bytes of memory have been allocated" << std::endl;
rom.seekg(0, std::ios::beg);
rom.read(this->memblock, (unsigned int)this->size);
std::cout << "The contents of the file are stored in memory" << std::endl;
rom.close();
if (flag == 0) {
}
else {
BinaryDump(path, this->size);
}
}
}
void ROM::BinaryDump(std::string path, std::streampos size) {
std::fstream binDump(path, std::ios::out | std::ios::binary);
binDump.write(this->memblock, size);
delete[] this->memblock;
binDump.close();
std::cout << "The ROM has been dumped" << std::endl;
}
对不起,如果这很明显,但我在这里感到迷茫。
uint8_t
和 char
是不同的类型。 (好吧 - 这取决于系统,但在您的系统上它们是不同的)。您不能互换使用这两个名称。
你的问题没有提到哪一行出错了,但是如果你查一下你会发现你传递的是uint8_t *
,而实际上函数期望的是char *
。
我想应该是 rom.read
。如果是这样,那么您可以通过以下方式解决问题:
rom.read( reinterpret_cast<char *>(memblock), size );
您不需要使用多余的 unsigned int
转换或 this->
前缀。
另一种可能的解决方案是使 memblock
具有类型 char *
.
我最近一直遇到标题错误,我不太确定自己做错了什么,有人有什么想法吗?相关代码如下
Rom.h
//Rom.h
#pragma once
#include <fstream>
struct ROM {
uint8_t* memblock;
std::fstream rom;
std::streampos size;
int flag;
void ROM::LoadROM(std::string path, int flag);
void ROM::BinaryDump(std::string path, std::streampos size);
}
Rom.cpp
//Rom.cpp
#include <iostream>
#include "Rom.h"
void ROM::LoadROM(std::string path, int flag) {
this->rom.open(path, std::ios::in | std::ios::binary | std::ios::ate);
if (rom.is_open()) {
this->size = rom.tellg();
std::cout << "\nThe Rom is " << rom.tellg() << " byte(s) long." << std::endl;
this->memblock = new uint8_t[(unsigned int)this->size];
std::cout << rom.tellg() << " Bytes of memory have been allocated" << std::endl;
rom.seekg(0, std::ios::beg);
rom.read(this->memblock, (unsigned int)this->size);
std::cout << "The contents of the file are stored in memory" << std::endl;
rom.close();
if (flag == 0) {
}
else {
BinaryDump(path, this->size);
}
}
}
void ROM::BinaryDump(std::string path, std::streampos size) {
std::fstream binDump(path, std::ios::out | std::ios::binary);
binDump.write(this->memblock, size);
delete[] this->memblock;
binDump.close();
std::cout << "The ROM has been dumped" << std::endl;
}
对不起,如果这很明显,但我在这里感到迷茫。
uint8_t
和 char
是不同的类型。 (好吧 - 这取决于系统,但在您的系统上它们是不同的)。您不能互换使用这两个名称。
你的问题没有提到哪一行出错了,但是如果你查一下你会发现你传递的是uint8_t *
,而实际上函数期望的是char *
。
我想应该是 rom.read
。如果是这样,那么您可以通过以下方式解决问题:
rom.read( reinterpret_cast<char *>(memblock), size );
您不需要使用多余的 unsigned int
转换或 this->
前缀。
另一种可能的解决方案是使 memblock
具有类型 char *
.