42

2 つのクラスがあります。1 つはアルゴリズム パラメーターを定義するためのもので、もう 1 つはアルゴリズムを実装するためのものです。

クラス 1 (アルゴリズム パラメーター):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace VM_Placement
{
    public static class AlgorithmParameters
    {
        public static int pop_size = 100;
        public static double crossover_rate = 0.7;
        public static double mutation_rate = 0.001;

        public static int chromo_length = 300;
        public static int gene_length = 4;
        public static int max_allowable_generations = 400;

        static Random rand = new Random();
        public static double random_num = rand.NextDouble();
    }
}

クラス 2 (実装アルゴリズム):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace VM_Placement
{
    public class Program
    {
        public struct chromo_typ
        {
            public string   bits;
            public float    fitness;

            //public chromo_typ(){
            // bits = "";
            // fitness = 0.0f;
            //}
            chromo_typ(string bts, float ftns)
            {
                bits = bts;
                fitness = ftns;
            }
        };

        public static int GetRandomSeed()
        {
            byte[] bytes = new byte[4];
            System.Security.Cryptography.RNGCryptoServiceProvider rng =
              new System.Security.Cryptography.RNGCryptoServiceProvider();
            rng.GetBytes(bytes);
            return BitConverter.ToInt32(bytes, 0);
        }

        public string GetRandomBits()
        {
            string bits="";

            for (int i = 0; i < VM_Placement.AlgorithmParameters.chromo_length; i++)
            {
                if (VM_Placement.AlgorithmParameters.random_num > 0.5f)
                    bits += "1";
                else
                    bits += "0";
            }
            return bits;
        }

        public static void Main(string[] args)
        {
            Random rnd = new Random(GetRandomSeed());

            while (true)
            {
                chromo_typ[] Population = new chromo_typ[VM_Placement.AlgorithmParameters.pop_size];
                double Target;

                Console.WriteLine("\n Input a target number");
                Target = Convert.ToDouble(Console.ReadLine());

                for (int i = 0; i < VM_Placement.AlgorithmParameters.pop_size; i++)
                {
                    Population[i].bits = GetRandomBits();
                    Population[i].fitness = 0.0f;
                }
            }
        }
    }
}

でエラーが発生しPopulation[i].bits = GetRandomBits();ていMain()ます。

エラーは次のとおりです。

非静的フィールド、メソッド、またはプロパティ 'VM_Placement.Program.GetRandomBits()' にはオブジェクト参照が必要です

何か不足していますか?

4

3 に答える 3

97

Mainメソッドは静的です。静的メソッドから非静的メソッドを呼び出すことはできません。

GetRandomBits()

静的な方法ではありません。のインスタンスを作成する必要がありますProgram

Program p = new Program();
p.GetRandomBits();

または作る

GetRandomBits()静的。

于 2012-04-22T00:52:56.703 に答える
12

あなたが望むように見えます:

public static string GetRandomBits()

がなければstatic、メソッドを呼び出す前にオブジェクトが必要になりますGetRandomBits()。ただし、 の実装はオブジェクトGetRandomBits()の状態に依存しないため、Programを宣言することをお勧めしstaticます。

于 2012-04-22T00:49:14.710 に答える
2

メソッドはクラスMain内で静的です。Program静的メソッド内からインスタンスメソッドを呼び出すことはできません。そのため、エラーが発生します。

GetRandomBits()これを修正するには、メソッドも静的にする必要があります。

于 2012-04-22T00:50:00.217 に答える