1

几天前我问了一个类似的问题,但我正在寻找更多的见解。当我向我的程序中添加一个字符串时,我得到了一个 AccessViolationException:

Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
   at _cexit()
   at <CrtImplementationDetails>.LanguageSupport._UninitializeDefaultDomain(Void * cookie)
   at <CrtImplementationDetails>.LanguageSupport.UninitializeDefaultDomain()
   at <CrtImplementationDetails>.LanguageSupport.DomainUnload(Object source, EventArgs arguments)
   at <CrtImplementationDetails>.ModuleUninitializer.SingletonDomainUnload(Object source, EventArgs arguments)

该程序在顶层有一堆 const std::string:

const std::string caseDelimitedOption = "CaseDelimited";
const std::string endOfLineOption = "EndOfLine";
const std::string functionNameDelimitWordsOption = "FunctionNameDelimitWords";
const std::string functionNameStartCaseOption = "FunctionNameStartCase";
const std::string indentStringOption = "IndentString";
const std::string lowerCaseOption = "LowerCase";
const std::string newLineBetweenDoAndWhileOption = "NewLineBetweenDoAndWhile";
const std::string nextLineOption = "NextLine";
const std::string nextLineAsWellAsCloseParenOption = "NextLineAsWellAsCloseParen";
const std::string noBracesAroundSingleStatementBlockOption = "NoBracesAroundSingleStatementBlock";
const std::string openBraceLocationOption = "OpenBraceLocation";
const std::string underscoreDelimitedOption = "UnderscoreDelimited";
const std::string upperCaseOption = "UpperCase";
const std::string whiteSpaceBeforeLeadingCmntOption = "WhiteSpaceBeforeLeadingComment";

如果我将最后一个字符串替换为:

const std::string whiteSpaceBeforeLeadingCmntOption = ""; //"WhiteSpaceBeforeLeadingComment";

然后异常消失。这只是额外的内存(来自字符串)碰到了我程序中其他地方引起的一些坏内存吗?还是与字符串有关的异常?

谢谢你的帮助,

4

3 回答 3

3

我假设这些字符串是全局变量。

您是否尝试从另一个全局变量的构造函数(或从进入 main 之前调用的某个方法)访问这些字符串?

如果是这种情况,您会遇到全局变量初始化顺序在多个编译单元中未定义的问题。有一些解决方案,但有关您的应用程序的更多信息可能会很有用。

首先测试看看是否输入了 main。

我认为它使用空字符串是一些编译器优化技巧的结果。

于 2009-07-07T18:20:54.587 回答
1

尝试

valgrind --leak-check=full your.exe

并记住使用 -g 编译您的应用程序以获取可执行文件中的源代码行。

于 2009-07-07T18:36:58.237 回答
0

问题不在于字符串。在你的程序中的某个地方,你正在阅读或写作越界。这会导致未定义的行为,这意味着程序可能看起来正在运行,您可能会遇到访问冲突,或者它可能会因另一个错误而崩溃,或者......任何其他事情都可能发生。

字符串看起来有所不同的原因仅仅是它巧妙地改变了程序,导致越界访问到达未分配的页面。

于 2009-07-07T18:07:01.120 回答