C “即时”追加/连接字符串

发布于 2024-12-12 16:35:37 字数 308 浏览 2 评论 0原文

我认为可以在 C 中动态连接字符串(字符数组)。

char* str1= "hello" " " "world";

但是当我尝试以下操作时,我会收到一条错误消息(函数 fopen 的参数太少)。为什么?

fopen(*argv ".comp", "r");

我想用 char[] 常量连接参数 - 没有 strcat 间接。这可能吗?

就像 PHP 中的“string”.$var 或 Java 中的“a string like this”+ var

I thought it's possible to concatenate strings (char arrays) in C on the fly.

char* str1= "hello" " " "world";

But when I try the following I'll receive an error message (Too few arguments to function fopen). why?

fopen(*argv ".comp", "r");

I want to concat the argument with an char[] constant - without the strcat indirection. Is this possible?

Like the "string".$var in PHP or the "a string like this" + var in Java

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

痴者 2024-12-19 16:35:38

您只能在编译时连接字符串文字。

因为编译器不知道 *argv 会是什么。

You can only concatenate string literals at compile time.

Because compiler has no idea what *argv is going to be.

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