c#类型标识符存在,但我仍然收到预期的错误[关闭]

Posted

技术标签:

【中文标题】c#类型标识符存在,但我仍然收到预期的错误[关闭]【英文标题】:c# type identifier exists but I'm still getting an error that it's expected [closed] 【发布时间】:2022-01-02 06:27:29 【问题描述】:

我正在编写我的第一个 C# 算法挑战,我遇到了一个问题。我已将类型标识符添加到我的所有变量中,但我仍然收到需要标识符的错误。当实际类型标识符存在时,我不确定如何解决这个问题。这是我的代码,这是错误日志。

public class ShortLongShort

  public static string Solution(string a, string b)
  
    string long = a;
    string short = b;
    if(a.Length < b.Length) 
        short = a;
        long = b;
    
    return short+long+short;
  

src/Solution.cs(5,12): error CS1001: Identifier expected
src/Solution.cs(5,12): error CS1002: ; expected
src/Solution.cs(5,17): error CS1001: Identifier expected
src/Solution.cs(6,12): error CS1001: Identifier expected
src/Solution.cs(6,12): error CS1002: ; expected
src/Solution.cs(6,18): error CS1001: Identifier expected
src/Solution.cs(8,15): error CS1001: Identifier expected
src/Solution.cs(9,14): error CS1001: Identifier expected
src/Solution.cs(11,12): error CS1525: Invalid expression term 'short'
src/Solution.cs(11,18): error CS1525: Invalid expression term 'long'
src/Solution.cs(11,23): error CS1525: Invalid expression term 'short'

【问题讨论】:

long and short 是reserved words,不能用作标识符。尝试@long/@short (verbatim identifier) 或将它们重命名为longString/shortString 【参考方案1】:

“long”和“short”都是类型的关键字(long 是 64 位整数,short 是 16 位整数)。将“long”和“short”变量的名称更改为其他名称,例如“longValue”和“shortValue”。

Read more here.

【讨论】:

【参考方案2】:

long 和 short 是类型,这些变量使用不同的名称。

【讨论】:

以上是关于c#类型标识符存在,但我仍然收到预期的错误[关闭]的主要内容,如果未能解决你的问题,请参考以下文章

RuntimeError:预期的标量类型 Double 但发现 Float

错误:“预期类型说明符”[关闭]

预期的“,”分隔符和未解析的标识符

从关键字定义,但我仍然得到错误

Spark:java.lang.RuntimeException:[1.226] 失败:预期标识符

无法将 PHP 值转换为日期类型。预期以下类型之一:null,DateTime [关闭]