vote up 1 vote down star

Hello,

I'm going to change my C# style in programming(I've been using 'public static' for variables,methods - everything).

My question:

public class WinSock
{
    public Socket sock;
    public byte[] data;
    .....
}

var data = new byte[2058];
data = WinSock.data;

or this one:

private class WinSock
{
    private Socket sock;
    private byte[] data;
    .....
    public byte[] getdata()
    {
        get {return data;}
    }
}

WinSock ws = new WinSock();
var data = new byte[2058];
data = ws.getdata();

In both cases the data and sock variables can be accessed from other classes.

Which of the two declarations is better?

flag

2  
The .NET Framework Naming guidelines should be a good read to learn about how to name variables, methods and classes properly. If you follow it mostly, your code won't look alien to readers. – OregonGhost Apr 28 at 13:34
FYI, msdn.microsoft.com/en-us/library/… – Richard Szalay Apr 28 at 13:45

9 Answers

vote up 4 vote down check

The second one is closer to what's generally considered to be better. In Object Oriented Programming we encapsulate the variables in the classes and only expose as little as needed outside the class.

Name your properties with an initial capital letter, and as a data member rather than a method, i.e. Data rather than getdata.

public class WinSock {

    private Socket _socket;
    private byte[] _data;

    public Socket Socket {
       get { return _socket; }
    }

    public byte[] Data {
        get { return _data; }
    }

}

(One way to name the private member variables is to use an underscore. There are some other conventions commonly used, but the important thing is really to pick one and stick to it.)

In C# 3 there is also a shortcut syntax for properties:

public class WinSock {

    public Socket Socket { get; private set; }

    public byte[] Data { get; private set; }

}
link|flag
My idol :) \nLength = 15; – John Apr 28 at 13:40
Shouldn't Data be a property and not a method? – ryeguy Apr 28 at 13:43
@ryeguy: Data is a property. :) – Guffa Apr 28 at 13:51
@Guffa: He means: you have braces when declaring Data. Probably copied from the question. – Stefan Steinegger Apr 28 at 14:31
Right, now I see what you mean. Thanks, I will correct that. – Guffa Apr 28 at 19:37
vote up 0 vote down

A few additional points:

  1. If you plan on unit testing the code that uses the WinSock class you should consider making the class public instead of internal and consider making the methods virtual. This type of class often needs to be mocked or stubbed to return different data to the caller, so that different paths in the callers code can be executed.
  2. You should consider how objects of this class will be constructed. For example, will you pass in the Socket, or will you pass in some data to the class so that it can create the Socket? Your goal should be to pass in whatever data is required to create the object in a useful state.
  3. You should consider how you will test this class. In particular, how will this class obtain any other classes it needs to use to accomplish its task. For that you should search on Dependency Injection. That will start you down a useful path.
link|flag
vote up 0 vote down

I would also vouch for the second code bit, with the amendment that you wrap your fields into properties and naming them properly. So, you would name your property "Data" rather than "getdata".

link|flag
vote up 0 vote down

Neither, instead of using a GetMethod(), you should wrap your private fields in properties.

public class WinSock
{
    private Socket sock;
    private byte[] data;

    public byte[] Data
    {
       get { return data; }
       set { data = value; }
    }
}
link|flag
vote up 3 vote down
  • A class can only be private if it is nested - and then access is limited to the outer classes. internal would be more common (and is the default for non-nested classes)
  • Don't use public fields (public Socket sock;)
  • Do consider automatically implemented properties (public Socket Socket {get; private set;}, for example)
  • Decide wheter getdata is a method or a property ;-p
link|flag
Marc,if we cosider the WinSock class as a serious class containing winsock functions that I have to use from outer classes,should I make it internal or private? I misunderstood,internal or private? :) – John Apr 28 at 13:30
From other classes in the same assembly, then "internal". From other classes in other assemblies, then "public". But you had "private", which is actually pretty rare. – Marc Gravell Apr 28 at 13:57
vote up 1 vote down

How about:

public Socket Sock { get; private set; }
public byte[] Date { get; private set; }

Automatically implemented properties are the way to go if you getters and setters do not require any validation logic. This provides encapsulation and allows you later to change the implementation to a manually implemented property, if needed, without forcing recompiles of .dll's that reference yours.

link|flag
vote up 4 vote down

From pure "declaration" side, second is slightly better. However, from design perspective (and from what can be seen), this is no good. Specifically, returning a reference to an array which is a private field in a class, is a big no-no. Consider:

private class WinSock
{
    private Socket sock;
    private byte[] data;
    .....

    // Read at most length bytes of data to buffer starting at offset
    // and return the number of bytes read
    public int Read(byte[] buffer, int offset, int length)
    {
        // ...
    }
}

WinSock ws = new WinSock();
var data = new byte[2058];
int bytesRead = ws.Read(data, 0, data.Length);
link|flag
vote up 3 vote down

The second. It is called "Encapsulation". You hide and protect your data from the outside world.

link|flag
vote up 11 vote down

Generally, making fields public is never a good idea.

Since getdata is a property, it should be called Data.

private class WinSock
{
    private Socket sock;
    private byte[] data;
    .....
    public byte[] Data
    {
        get { return data; }
    }
}

The public interface, consisting of public properties and methods, should ensure that the state (the fields) is never inconsistent. The class is responsible for the fields. it should not allow anyone to write directly into it. This is what encapsulation is about.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.