Delphi 2009 中函数 CreateProcess 中的访问冲突
在我的程序中,我有以下代码:
//Code
if not CreateProcess(nil, NonConstCmd, nil, nil, True, NORMAL_PRIORITY_CLASS or
CREATE_NEW_PROCESS_GROUP, nil, PCh, SI, P) then
//Code
并且我不断收到访问冲突错误。 顺便说一下,在 Delphi7 中,相同的代码可以完美运行。 我读过MSDN,发现Delphi中的CreateProcess函数可以修改第二个参数。 最初它是 const,这就是为什么我创建一个具有相同值的新变量。 但没有任何效果。
问题是:为什么这段代码不起作用?
In my program I've the following code:
//Code
if not CreateProcess(nil, NonConstCmd, nil, nil, True, NORMAL_PRIORITY_CLASS or
CREATE_NEW_PROCESS_GROUP, nil, PCh, SI, P) then
//Code
And I keep getting Access violation error.
By the way, in Delphi7 the same code works perfectly.
I've read MSDN and found that CreateProcess function in Delphi can modify the second argument.
Inititally It was const, that's why I create a new variable with the same value.
But it takes no effect.
The question is: why doesn't this code work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在
lpCommandLine
参数中。我怀疑您正在做这样的事情:这会导致访问冲突,因为
CmdLine
不是可写内存。该字符串是存储在只读存储器中的常量字符串。相反,您可以这样做:
这足以使
CmdLine
由可写内存支持。仅仅使保存字符串的变量成为非常量是不够的,您还需要使支持字符串的内存也可写。当您将字符串文字分配给字符串变量时,该字符串变量指向只读内存。
The problem is in the
lpCommandLine
parameter. I suspect you are doing something like this:This results in an access violation because
CmdLine
is not writeable memory. The string is a constant string stored in read-only memory.Instead you can do this:
This is enough to make
CmdLine
be backed by writeable memory.It is not enough just to make the variable holding the string non-const, you need to make the memory that backs the string writeable too. When you assign a string literal to a string variable, the string variable points at read-only memory.