如何在 YAML 中表达 int array[6]
我有一个类型 int arr[6]
,其值为 {1,2,3,4,5,6}
。我应该如何使用 YAML 表达这些数据?
I have a type int arr[6]
, and the value is {1,2,3,4,5,6}
. How should I express this data using YAML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者
or
当我在 application.yaml 中使用 [1, 2, 3, 4, 5, 6] 时,它会在我的 spring 应用程序中抛出 IllegalArgumentException 。但是,当我使用 1,2,3,4,5,6 时它会起作用,
我的注释代码是
It throws IllegalArgumentException in my spring application, when I use [1, 2, 3, 4, 5, 6] in application.yaml. However it works when i use 1,2,3,4,5,6
my annotation code is
您应该简单地使用一个列表:
You should simply use a list: