相當直接的問題,我收到一個錯誤,我不知道如何解決,在Visual C#Express中,當我在主函數中調用Romberg函數時(我提供了錯誤消息適當的線)。我嘗試過使用這個.Romberg,但它沒有幫助。我應該做什麼不同?C#函數錯誤(對象引用)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Romberg2
{
class test
{
// the function
double f(double x)
{
double f;
f=8*(Math.Sqrt(1-x*x)-x);
return f;
}
// The Integration function
void Romberg(double a, double b, int n, double[,] R)
{
int i, j, k;
double h, sum;
h = b - a;
R[0,0]=(h/2)*(f(a)+f(b));
for (i=1; i<=n; i++)
{
h=h/2;
sum=0;
for (k=1; k <= (Math.Pow(2.0,i)-1); k +=2)
sum +=f(a+k*h);
R[i,0]=R[i-1,0]/2+sum*h;
for(j=1; j<=i; j++)
R[i,j]=R[i,j-1]+(R[i,j-1]-R[i-1,j-1])/(Math.Pow(4.0,j)-1);
}
}
static void main(int argc, char [] argv)
{
double[,] R = new double [10,10];
int n=5, digits=13;
double a=0, b=1/Math.Sqrt(2.0);
// Call the integrating function
Romberg(a, b, n, R);//ERROR: An object reference is required for the non-static field, method, or property
// Printout the diagram
for(int i=0; i<n; i++)
{
for(int j=0; j<=i; j++)
{
Console.WriteLine(R[i,j] + " ");
}
Console.WriteLine("\n");
}
}
}
}
添加靜態作廢龍貝格 - >靜態無效伯格 – feco
這是一門功課的問題嗎? –
@Marc最後我知道答案也是:( – asawyer