有没有办法使用“类型” word 作为 Scala 中的变量名?
在我的实践中,变量/参数经常用于存储某种类型(通常作为枚举值)。在名称中指定实体类通常是没有意义的(就像当函数仅用于处理用户时的 userType 一样)。有没有办法可以使用“类型”一词来满足我的需求,而不是使用“tipe”、“kind”、“somethingType”等脚手架来代替它?实际的 Scala type
关键字很少使用 - 如果我可以在大多数代码文件中取消定义它(作为关键字),那就太好了。
It is frequent in my practice that a variable/argument is to store a type of something (as an enumeration value usually). And it usually makes no sense to specify an entity class in the name (like userType when a function is onlu intended to handle users). Is there a way I can use the "type" word for my needs instead of using scaffolds like "tipe", "kind", "somethingType" instead of it? The actual Scala type
keyword is of such a rare use - it would be nice If I could undefine it (as a keyword) in the most of my code files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用反引号转义:
You can escape with backticks: