开发者

static method with private methods within it [C#]

开发者 https://www.devze.com 2023-02-12 08:35 出处:网络
I wanted to make a class Draw which will have static method ConsoleSquare() and I wanted to make all other methods in that class hidden (private).But I got errors in marked places and I don\'t know ho

I wanted to make a class Draw which will have static method ConsoleSquare() and I wanted to make all other methods in that class hidden (private).But I got errors in marked places and I don't know how to solve them and still achieve the same idea ( ConsoleSquare() - static ; all other methods hidden )

class Draw {
private string Spaces(int k){
    string str="";
    for(;k!=0;k--)
        str+='\b';
    return str;
    }
private string Line(int n,char c){
    string str="";
    for(;n!=0;n--)
       开发者_C百科 str+=c;
    return str;
    }
public static void ConsoleSquare(int n,char c){
    string line  = Line(n,c); // ovdje
    string space = c + Spaces(n - 2) + c; //ovdje
    Console.WriteLine(line);
    for (; n != 0; n--)
        Console.WriteLine(space);
    Console.WriteLine(line);
    }
}


A static method cannot call instance methods unless you explicitly provide an instance. Mark Spaces and Line as static as well if you want to call these directly from ConsoleSquare.


Declare them as private static.


you need an instance to call an instance method. You can't call an instance method from a static method without providing an instance.


Make the private methods static too.


I would suggest you encapsulate all Draw related methods in another class. Don't put any static method in there. Let all the methods be public in that too.

Define another class; call it DrawUI or something. Let this have the static method. In this static method instantiate the Draw class, use its methods

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号