char* 的交换函数
我有一个简单的函数,它交换字符数组中的两个字符。但是,我收到“Bla.exe 中 0x01151cd7 处未处理的异常:0xC0000005:访问冲突写入位置 0x011557a4”。错误。两个索引(左和右)都在数组的限制内。我做错了什么?
void swap(char* s, int left, int right) {
char tmp = s[left];
s[left] = s[right];
s[right] = tmp;
}
swap("ABC", 0, 1);
我正在使用 VS2010 和非托管 C/C++。谢谢!
I have the simple function below which swap two characters of an array of characters (s). However, I am getting a "Unhandled exception at 0x01151cd7 in Bla.exe: 0xC0000005: Access violation writing location 0x011557a4." error. The two indexes (left and right) are within the limit of the array. What am I doing wrong?
void swap(char* s, int left, int right) {
char tmp = s[left];
s[left] = s[right];
s[right] = tmp;
}
swap("ABC", 0, 1);
I am using VS2010 with unmanaged C/C++. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法修改字符串文字。而是尝试这个:
You can't modify a string literal. instead try this:
“ABC”位于RODATA部分,因此无法更改它,请参阅程序集:
"ABC" is in the RODATA section, so you can't change it, please see the assembly: