如何声明名称为'operator'的变量? [复制]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何声明名称为'operator'的变量? [复制]相关的知识,希望对你有一定的参考价值。

如何声明名称为“ operator”的变量?

public string operator;

I see the below error, click here to see the picture

答案

使用public string @operator

@前缀允许您将保留字用作变量名。

另一答案

您可以在标识符的名称前加上@@operator]来使用任何保留字>

var @event = "Hello";
var @var = 23;
var @enum = new List  1, 2, 3 ;

不用说,这并没有太大的可读性,但是如果您觉得适合您的情况,可以使用它。

以上是关于如何声明名称为'operator'的变量? [复制]的主要内容,如果未能解决你的问题,请参考以下文章

MySQL Error: Illegal mix of collations for operation 'concat'

如何在Swift中声明计算属性'throws'?

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

重载操作符 'operator'

SQL server简单的存储过程问题?