我没有';I don’我不明白我变了什么
本文关键字:明白 什么 我变了 don | 更新日期: 2023-09-27 18:26:50
一个小时前,我花了很多时间完成了这个项目,但我在正确保存时遇到了问题,完全丢失了它。然而,我又做了一次,但这次它不起作用
我不确定这次我做错了什么。。。我想我也做了同样的事,但这次不管用吗?
我收到以下错误:
错误1非静态字段需要对象引用,方法或属性'ConsoleApplication1.Program.convortir(字符串)'C:''Documents and设置''因个人原因修改''程序.cs 12 45控制台应用程序1
这是我的代码,我本来打算只放错误行,但它可能会错过我们发现问题所需的一些信息:
static void Main(string[] args)
{
Console.WriteLine("23.21 es " + convertir("23.21"));
Console.ReadLine();
}
public string convertir(string str)
{
string[] arr;
arr = str.Split('.');
string rtn = españolizar(arr[0], "peso");
if (arr.Length > 1)
{
rtn += " con " + españolizar(arr[1], "centavo");
}
return rtn;
}
public string españolizar(string str, string str2)
{
string[] list1 = { "cero", "un", "dos", "tres", "cuatro", "cinco", "seis", "siete", "ocho", "nueve", "diez", "once", "doce", "trece", "catorce", "quince" };
string[] list2 = { "nivelarindexes", "dieci", "veinti", "trei", "cuare", "cincue", "sese", "sete", "oche", "nove" };
int numero = int.Parse(str);
string strNumero = Convert.ToString(numero);
int primerDigito = int.Parse(Convert.ToString(strNumero[0]));
int segundoDigito = 0;
if (strNumero.Length > 1)
{
segundoDigito = int.Parse(Convert.ToString(strNumero[1]));
}
int cases = -1;
if (numero > -1 && numero < 16)
{
cases = 0;
}
else if (numero > 15 && numero < 30)
{
cases = 1;
}
else if (numero > 29 && numero < 100)
{
cases = 2;
}
else if (numero == 100)
{
cases = 3;
}
string rtn = "";
switch (cases)
{
case 0:
rtn = list1[numero] + " " + str2;
if (primerDigito != 1)
{
rtn += "s";
}
break;
case 1:
if (numero != 20)
{
rtn = list2[primerDigito] + list1[segundoDigito];
}
else
{
rtn = "veinte";
}
rtn += " " + str2 + "s";
break;
case 2:
rtn = list2[primerDigito] + "nta";
if (segundoDigito != 0)
{
rtn += " y " + list1[segundoDigito];
}
rtn += " " + str2 + "s";
break;
case 3:
rtn = "cien " + str2 + "s";
break;
case -1:
rtn = "número invalido";
break;
}
rtn = rtn.Replace("iun", "iún").Replace("idos", "idós").Replace("itres", "itrés").Replace("iseis", "iséis");
return rtn;
}
我可以发誓我没有改变任何东西:C
将public string convertir(string str)
更改为public static string convertir(string str)
。对españolizar函数执行相同操作。
您收到此消息是因为您正在从静态方法调用非静态方法。您需要该类的一个实例来调用非静态方法,或者使其他方法成为静态方法。
您必须将两个方法更改为static
方法,因为您不能从非静态方法调用静态方法。有关原因的解释,请参见此处。
要解决此问题,您必须更改以下内容:
public string convertir(string str)
至
public static string convertir(string str)
并更改
public string españolizar(string str, string str2)
至
public static string españolizar(string str, string str2)