如何在单赋值 C (SAC) 中访问 argv/argc?

发布于 2024-12-12 06:17:22 字数 179 浏览 0 评论 0原文

argv 是 SAC 字符串数组,还是传统的 C 字符串数组?

文档中有 CommandLine.sac ,但我不知道如何使用 SAC 的 API。

Is argv a SAC array of strings, or a traditional C array of strings?

There's CommandLine.sac in the docs, but I have no idea how to use SAC's API.

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

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

发布评论

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

评论(2

物价感观 2024-12-19 06:17:22

在版本 (1.0) 中,您可以使用 argv(1) 函数。

$ cat args.sac
use StdIO: all;
use Array: all;
use CommandLine: all;

int main() {
    printf("Test: %s\n", argv(1));

    return(0);
}
$./args hello
$ Test: hello

In version (1.0) you can use the argv(1) function.

$ cat args.sac
use StdIO: all;
use Array: all;
use CommandLine: all;

int main() {
    printf("Test: %s\n", argv(1));

    return(0);
}
$./args hello
$ Test: hello
多彩岁月 2024-12-19 06:17:22

SAC 两者都没有(实际上更糟):SAC 在 CommandLine 模块中提供了 argv() ,返回一个包含所有参数连接的字符串:

$ cat args.sac
use StdIO: all;
use Array: all;
use CommandLine: all;

int main() {
    printf("%s\n", argv());

    return(0);
}
$ sac2c -o args args.sac
$ ./args a b c
./args a b c

SAC does neither (actually worse): SAC provides argv() in the CommandLine module, returning a string with all the arguments concatenated:

$ cat args.sac
use StdIO: all;
use Array: all;
use CommandLine: all;

int main() {
    printf("%s\n", argv());

    return(0);
}
$ sac2c -o args args.sac
$ ./args a b c
./args a b c
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文