错误“int”不包含“a”的定义,并且找不到可接受类型为“int”的第一个参数的扩展方法“a” 10
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
int b = 0;
static void Main(string[] args)
{
Program maths = new Program ();
Console.Write(maths.math(0).a); //错误“int”不包含“a”的定义~
Console.Read();
}
public int math( int a )
{
a = this.b;
return 1;
}
}
} 展开
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
int b = 0;
static void Main(string[] args)
{
Program maths = new Program ();
Console.Write(maths.math(0).a); //错误“int”不包含“a”的定义~
Console.Read();
}
public int math( int a )
{
a = this.b;
return 1;
}
}
} 展开
1个回答
推荐于2018-04-10
展开全部
Console.Write(maths.math(0).a); //错误“int”不包含“a”的定义~
1、a 是函数里面的局部变量,当函数结束的时候,a就被释放掉了
2、函数是不能用"."去调用成员变量的,只有对象才用“.”调用成员对象。
这是修改的语句,你试一下,看看是不是你要的结果:
Console.Write(maths.math(0));
public int math(int a)
{
b = a;
return b;
}
1、a 是函数里面的局部变量,当函数结束的时候,a就被释放掉了
2、函数是不能用"."去调用成员变量的,只有对象才用“.”调用成员对象。
这是修改的语句,你试一下,看看是不是你要的结果:
Console.Write(maths.math(0));
public int math(int a)
{
b = a;
return b;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询