gpt4 book ai didi

chapel - bool 是否有 writef() 格式说明符?

转载 作者:行者123 更新时间:2023-12-04 12:45:38 25 4
gpt4 key购买 nike

我看了 writef() 任何文档 bool 说明符,似乎没有。

在教堂计划中,我有:
...

config const verify = false;
/* that works but I want to use writef() to also print a bunch of other stuff*/
writeln("verify = " + verify);
writef("verify = %<what-specifier-goes-here>\n", verify);

最后一条语句可以正常工作。
// I guess I could do:

writef( "verify = %s\n",if verify then "true" else "false");

最佳答案

基于 FormattedIO documentation ,没有 bool Chapel 的格式化 IO 中可用的说明符。

相反,您可以使用通用说明符( %t )打印 bool 输入格式化的 IO:

config const verify = false;
writef("verify = %t\n", verify);

此说明符使用 writeThisreadWriteThis打印变量的类型的方法。 Chapel IO documentation提供了有关这些方法如何工作的更多详细信息。

关于chapel - bool 是否有 writef() 格式说明符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47243389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com