char* 的交换函数

发布于 2024-08-29 18:36:40 字数 321 浏览 9 评论 0原文

我有一个简单的函数,它交换字符数组中的两个字符。但是,我收到“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸵鸟症 2024-09-05 18:36:40

您无法修改字符串文字。而是尝试这个:

char s[] = "ABC"
swap(s, 0, 1);
printf("%s\n", s);

You can't modify a string literal. instead try this:

char s[] = "ABC"
swap(s, 0, 1);
printf("%s\n", s);
兮颜 2024-09-05 18:36:40

“ABC”位于RODATA部分,因此无法更改它,请参阅程序集:

        .section        .rodata
.LC0:
        .string "ABC"

"ABC" is in the RODATA section, so you can't change it, please see the assembly:

        .section        .rodata
.LC0:
        .string "ABC"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文