1. ホーム
  2. c#

[解決済み] 保護レベルによりアクセス不能になりました。

2022-01-26 17:38:51

質問

これがわからないんです。問題は、距離、クラブ、クリーンクラブ、ホール、スコア、パーのすべてに保護レベルのためアクセス不能と表示されることで、すべて正しく行ったつもりなのになぜなのかわかりません。

namespace homeworkchap8
{
    public class Clubs
    {
        protected string club;
        protected string distance;
        protected string cleanclub;
        protected string scores;
        protected string par;
        protected string hole;            

        public string myclub
        {
            get { return club; }
            set {club = value; }
        }        
        public string mydistance
        {
            get { return distance; }
            set { distance = value; }
        }        
        public string mycleanclub
        {
            get { return cleanclub; }
            set { cleanclub = value; }
        }       
        public string myscore
        {
            get { return scores; }
            set { scores = value; }
        }       
        public string parhole
        {
            get { return par; }
            set { par = value; }
        }       
        public string myhole
        {
            get { return hole; }
            set { hole = value;}
        }
    }   
}

これが派生クラスです。

namespace homeworkchap8
{
    public class SteelClubs : Clubs, ISwingClub
    {
        public void SwingClub()
        {
            Console.WriteLine("You hit a " + myclub + " " + mydistance);
        }

        public void clean()
        {
            if (mycleanclub != "yes")
            {
                Console.WriteLine("your club is dirty");
            }
            else
            {
                Console.WriteLine("your club is clean");
            }
        }

        public void score()
        {   
            Console.WriteLine("you are on hole " + myhole + " and you scored a " + 
                myscore + " on a par " + parhole);
        }            
    }
}

これがインターフェースです。

namespace homeworkchap8
{
    public interface ISwingClub
    {
        void SwingClub();
        void clean();
        void score();
    }  
}

以下はメインコードです。

namespace homeworkchap8
{
    class main
    {    
        static void Main(string[] args)
        {    
            SteelClubs myClub = new SteelClubs();
            Console.WriteLine("How far to the hole?");
            myClub.distance = Console.ReadLine();
            Console.WriteLine("what club are you going to hit?");
            myClub.club = Console.ReadLine();
            myClub.SwingClub();

            SteelClubs mycleanclub = new SteelClubs();
            Console.WriteLine("\nDid you clean your club after?");
            mycleanclub.cleanclub = Console.ReadLine();
            mycleanclub.clean();

            SteelClubs myScoreonHole = new SteelClubs();
            Console.WriteLine("\nWhat hole are you on?");
            myScoreonHole.hole = Console.ReadLine();
            Console.WriteLine("What did you score on the hole?");
            myScoreonHole.scores = Console.ReadLine();
            Console.WriteLine("What is the par of the hole?");
            myScoreonHole.par = Console.ReadLine();

            myScoreonHole.score();

            Console.ReadKey();    
        }
    }
}

解決方法は?

ベースクラスで Clubs を宣言しています。 protected

  • クラブになります。
  • の距離です。
  • cleanclub;
  • のスコアです。
  • パー
  • ホール

つまり、これらのクラスにアクセスできるのは、クラス自身、あるいは Clubs .

あなたの main のコードでは、クラス自体の外からこれらにアクセスしようとしています。

Console.WriteLine("How far to the hole?");
myClub.distance = Console.ReadLine();

これらの変数に(ある程度正しく)パブリックアクセッサを提供しました。

public string mydistance
{
    get
    {
        return distance;
    }
    set
    {
        distance = value;
    }
}        

ということは、あなたのメインコードは次のように変更されます。

Console.WriteLine("How far to the hole?");
myClub.mydistance = Console.ReadLine();