作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 Eclipse 的 Garmin 的 monkeyc (ConnectIq) 中构建项目,我想使用 const
而不是 var
在我的代码中,但似乎 const
关键字不被编译器识别。有什么问题吗?
我的代码是:
const PI = 3.14;
编译器这样提示:
BUILD: ERROR: C:\Path:155 missing '}' at 'const'
如果我改变 const
至 var
, 一切顺利。哪里会出问题?来自 Garmin 文档 MonkeyC 应该有 const
关键词。
最佳答案
它既不是错误也不是功能,它只是语言实现的方式。 Programmer's Guide明确地说
Constants are named, immutable values declared with the
const
keyword. These are useful for storing unchanging values that may be used repeatedly throughout code. Constants must be declared at the module or class level; they cannot be declared within a function.
关于connectiq - MonkeyC 无法识别 Const 关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40409905/
我正在 Eclipse 的 Garmin 的 monkeyc (ConnectIq) 中构建项目,我想使用 const而不是 var在我的代码中,但似乎 const关键字不被编译器识别。有什么问题吗?
我是一名优秀的程序员,十分优秀!