这基本上是我想做的事情:
SerialPort::ReadBytes(int32& errcode, Message::string& msg, uint32 num)
{
DWORD numBytesRead = 0;
LPDWORD pNumBytesRead = &numBytesRead;
errcode = 0;
std::unique_ptr <char[]> buff (new char[num]);
// ^^^^ pass this char buffer to the ReadFile function below
if (!ReadFile(m_sp_pointer, // Handle to device
buff, // Receives data from device
num, // num bytes to read (in)
(LPDWORD)pNumBytesRead, // num bytes read (out)
NULL))
{
errcode = GetLastError();
}
if (numBytesRead > 0)
{
return true;
}
return false;
}
我确实知道我没有正确执行此操作,所以我的问题是:我如何正确执行此操作,是否有任何事情使这成为一个坏主意?提前致谢。
编辑:我实际上应该在参数中传入 unique_ptr 而不是在本地声明它并传入Message::string& msg
。
我最初的尝试是通过引用传递Message::string
( std::string
),所以这也是一个选项.. 即,根本不使用 unique_ptr。在那种情况下,我会在本地使用常规char[]
,然后将msg
内容设置为char[]
并返回。
我不确定哪个会更好,似乎有一些回复建议vector<char>
改为。(与使用非常相似std::string
)。