还有哪些语言与Chapel的配置变量具有相似的概念

时间:2017-07-27 15:47:05

标签: command-line chapel

我刚刚发现了Chapel的配置变量修饰符,它非常适合命令行操作。是否有其他语言或框架模仿此功能,因此我不必每次都对过滤器进行编程?

1 个答案:

答案 0 :(得分:2)

所有不同的 config - s的宽度确实无与伦比:

config var   VAR  = 1;         //  --VAR=10         sets other value from cmdline
                               //  --VAR 20         sets other value too
config const RHO  = 1.23456;   //  --RHO=0.123456   sets other value from cmdline
                               //  --RHO 0.2468     sets other value too
                               //  --RHO=0.39*VAR   sets other value for COMPILER
                               //                                    based on VAR
config param DBG  = false;     // -s DBG=true       sets other value from cmdline
config type  B    = uint(8);   //    -sB='uint(16)' sets other value from cmdline
                               //    -sB='if DBG then uint(32) else uint(16)'
                               //                   sets other value for COMPILER
                               //                                    based on DBG

虽然必须有一个编译时已知的输入,这是一个特定的限制(对于强类型,编译语言既明显又自然),仍然可以灵活地使用这些结构进行临时设置自适应运行时可配置行为很好,很难在其他语言/编译器环境中并行。