vote up 1 vote down star

I had a coworker see this the other day and I'm not quite sure why this happened. Can anyone explain it?

We have class A:

using System;
using System.Data;

public class A
{
  protected DataTable _table;

  public A()
  {

  }
}

We have class B that inherits from class A (assume there in the same namespace):

using System;

public class B : A
{
  public B()
  {

  }
}

In the constructor of class B, if I try this._table, it doesn't compile? Why does it not?

But to get it to work, I have to add using System.Data; and everything works fine.

Why does .NET not do this for me? So that when I try to access the protected member, it knows that its a System.Data.DataTable?

forgive me if the classes are 100% correct...

flag

"if I try this._table". this._table isn't a complete statement. What exactly are you trying to do with it? – James Curran Oct 14 '08 at 14:46
If your issue was just the missing semicolon, I'd suggest just deleting this question. – Michael Haren Oct 14 '08 at 15:15

10 Answers

vote up 2 vote down check

Other than the semi-colon missing after the declaration of _table, it's fine. On the other hand, I personally avoid having fields with an access modifier of anything other than private.

link|flag
"anything other than public" or "anything other than private" ? – James Curran Oct 14 '08 at 14:45
Oops, thanks James. Fixed :) – Jon Skeet Oct 14 '08 at 14:45
just fixed that dang semi-colon... no dang intelli-sense here to fix it for me.. hehe – Miles Oct 14 '08 at 14:53
I see no problem with using internal fields. YAGNI. – Jay Bazuzi Oct 14 '08 at 15:04
Jay: I think we'll have to agree to differ. I prefer not to let even other classes within the same assembly violate encapsulation. I regard fields as a matter of implementation, not API. – Jon Skeet Oct 14 '08 at 15:19
show 1 more comment
vote up 3 vote down

This is not a language issue - if anything, you could call it an IDE issue, for not adding the using statement when creating the new class. Even then, the IDE does not know you will be accessing this member, and I prefer to keep my "usings" as minimal as possible. In any case, the fact that B extends A does not tell the compiler anything about which namespaces it must search for the types referenced in B.

Also, I would strongly suggest you change your access of the _table member to use a getter property.

link|flag
You don't need the using directive anyway, necessarily. For instance, you could write: Console.WriteLine(_table); with no issues. – Jon Skeet Oct 14 '08 at 14:46
(Oh, and the linker doesn't care about namespaces. It cares about assemblies.) – Jon Skeet Oct 14 '08 at 14:47
Console.WriteLine expects an Object, so it does not need the _table's Type. – harley.333 Oct 14 '08 at 14:57
Thanks for the clarification Jon – Chris Marasti-Georg Oct 14 '08 at 15:18
@harley: Exactly. There's nothing in the OP's question suggesting that he needed using System.Data. – Jon Skeet Oct 14 '08 at 15:18
vote up 0 vote down

Hmm

Is this exact code? I don't see a semi-colon after your declaration of _table...

link|flag
no, this isn't the exact code, thats what i mentioned up in the original message – Miles Oct 14 '08 at 15:03
vote up 0 vote down

Are the classes in the same assembly? I tried your sample with the classes in the same assembly and it compiled fine.

link|flag
vote up 0 vote down

It should work. I just tried it and it does work.

Check if both classes are in the same namespace. If they are not, don't forget to include the namespace of class A with the using keyword.

Check if both classes are in the same assembly. If they are not, don't forget to include a reference to the assembly of class A in the assembly of class B.

link|flag
vote up 0 vote down

I agree with ya'll that they should be using "getters/setters" and just set the _table to private.

I was just curious to why the .Net language wouldn't even let it compile....

link|flag
Given that it compiles when we try the code you've given, it's hard to say. What was the error message? – Jon Skeet Oct 14 '08 at 14:55
vote up 0 vote down

I'm not having this problem--this works fine for me:

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;

namespace ConsoleApplication4
{
    class Class1
    {
        protected DataTable _table;

        public Class1(){ _table = null; }
    }

    class Class2 : Class1
    {
        public Class2(){ _table = null; }
    }
}


namespace ConsoleApplication4
{
    class Class3 : Class1
    {
        public Class3(){ _table = null; }
    }
}

// another file:
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication4
{
    class Class4:Class1
    {
        public Class4()
        {
            _table = null;
        }
    }
}
link|flag
Instead of setting it to null, set it to an actual table in Class1, and try accessing a member on it in Class4. – Joel B Fant Oct 14 '08 at 15:01
you've got class1 and class2 both using System.Data; remove class2 to another file that doesn't use System.data – Miles Oct 14 '08 at 15:05
@Miles: He did essentially that with Class4. – Joel B Fant Oct 14 '08 at 16:44
vote up 0 vote down

Actually I don't think the compiler even looks at _table, as soon as it sees DataTable and sees that it's an undefined type it will skip forward to the next line that looks syntatically correct. I think even if you had some junk variable after DataTable in class B you would still get the same error.

link|flag
vote up 0 vote down

Shouldn't we be fully qualifing our types in a class anyway? It was the mantra driven into my head while learning c++ anwyay.

link|flag
Nope, not unless you like reading really wide lines of code. And after you've seen your 1000th System.Windows.Form.* namespace, it begins to drag a little... – Mark Ingram Oct 14 '08 at 15:04
Thanks... While coding I use namespaces but for release builds I fully qulaify everything. The idea as I was taught was to remove any possible ambiguity... – paul.richardson Oct 14 '08 at 15:43
vote up 0 vote down

I'm agreeing with ya'll now.

I thought I'd post the question because I believed my coworker knew that he was talking about. I tried the following and had now problems:

using System.Data;

namespace WindowsApplication1
{
    public class classA
    {
        protected DataTable _table;

        public classA()
        {

        }
    }
}

next file:

namespace WindowsApplication1
{
    public class classB : classA
    {
        public classB()
        {
            this._table = new System.Data.DataTable();
        }
    }
}

and that compiled just fine. I thought there was going to be a problem with a linkage between all the .Net namespaces but there's not.

Thanks for all the comments/answers.

link|flag

Your Answer

Get an OpenID
or

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