Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. CA2214 Do not call overridable methods in constructors

CA2214 Do not call overridable methods in constructors

Scheduled Pinned Locked Moved C#
c++help
17 Posts 7 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B BobJanova

    Does that dodge the warning? If so, that's pretty rubbish on FXCop's part since that's 'bad' for exactly the same reason.

    P Offline
    P Offline
    Pete OHanlon
    wrote on last edited by
    #8

    Yes it does, and there's nothing wrong with doing this. The problem with FxCop is that it's very arbitrary with its rules, many of which are excessively anal.

    *pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

    "Mind bleach! Send me mind bleach!" - Nagy Vilmos

    CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

    D 2 Replies Last reply
    0
    • P Pete OHanlon

      Yes it does, and there's nothing wrong with doing this. The problem with FxCop is that it's very arbitrary with its rules, many of which are excessively anal.

      *pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

      "Mind bleach! Send me mind bleach!" - Nagy Vilmos

      CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

      D Offline
      D Offline
      DaveyM69
      wrote on last edited by
      #9

      I'll check this later - I'm pretty sure on VS2012 when I tried this yesterday before posting it just added something into the warning about a call chain or similar but still CA2214

      Dave
      Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
      BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

      1 Reply Last reply
      0
      • D DaveyM69

        Cheers Alan!

        Alan N wrote:

        don't do anything naughty

        :laugh: The overridden method is purely setting instance fields unique to that class to their initial values (these are not changed anywhere after instanciation - that part of the derived classes is immutable) and returning initialization values that are common to all derived classes to the base's constructor. It seems like I should be OK to suppress the warning in this scenario.

        Dave
        Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
        BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

        J Offline
        J Offline
        jschell
        wrote on last edited by
        #10

        DaveyM69 wrote:

        The overridden method is purely setting instance fields unique to that class to their initial values (these are not changed anywhere after instanciation - that part of the derived classes is immutable) and returning initialization values that are common to all derived classes to the base's constructor.

        As I read that... Yes that can lead to problems. And that is what the constructor is supposed to do - iniatialize the class variables. Also why would the base ctor care about child initialization values when all the base ctor should be doing is initializing the base ctor?

        D 1 Reply Last reply
        0
        • J jschell

          DaveyM69 wrote:

          The overridden method is purely setting instance fields unique to that class to their initial values (these are not changed anywhere after instanciation - that part of the derived classes is immutable) and returning initialization values that are common to all derived classes to the base's constructor.

          As I read that... Yes that can lead to problems. And that is what the constructor is supposed to do - iniatialize the class variables. Also why would the base ctor care about child initialization values when all the base ctor should be doing is initializing the base ctor?

          D Offline
          D Offline
          DaveyM69
          wrote on last edited by
          #11

          jschell wrote:

          why would the base ctor care about child initialization values when all the base ctor should be doing is initializing the base ctor

          The child needs to self initialize with values retrieved from an unmanaged function call (the function is different for each child type) - then pass the common values to the base so it can initialize itself. What I was trying to do was force a method to be called when the base constructor runs that 1. calls the unmanaged function (hence it needing to be in called from the child as only the child should know what unmanaged function to call, and therefore needs to be an abstract method) 2. the child initializes it's unique fields 3. passes the common values back into the base constructor (hence the out parameters) Perhaps this code will make it clearer...

          public abstract class Base
          {
          private int commonValue1;
          private int commonValue2;
          private int id;

          protected Base(int id)
          {
              this.id = id;
              Initialize(out commonValue1, out commonValue2); // CA2214
          }
          
          public int CommonValue1
          {
              get { return commonValue1; }
          }
          public int CommonValue2
          {
              get { return commonValue2; }
          }
          public int Id
          {
              get { return id; }
          }
          
          protected abstract void Initialize(out int commonValue1, out int commonValue2);
          

          }

          public class ChildA : Base
          {
          public ChildA(int id)
          : base(id)
          { }

          protected override void Initialize(out int commonValue1, out int commonValue2)
          {
              DataA data;
              NativeMethods.UnmanagedFunctionGetChildAData(Id, out data);
              commonValue1 = data.Value1;
              commonValue2 = data.Value2;
          }
          

          }

          public class ChildB : Base
          {
          private int childBValue;

          public ChildB(int id)
              : base(id)
          { }
          
          public int ChildBValue { get { return childBValue; } }
          
          protected override void Initialize(out int commonValue1, out int commonValue2)
          {
              DataB data;
              NativeMethods.UnmanagedFunctionGetChildBData(Id, out data);
              commonValue1 = data.Value1;
              commonValue2 = data.Value2;
              childBValue = data.Value3;
          }
          

          }

          public class ChildC : Base
          {
          private int childCValue1;
          private int childCValue2;

          public ChildC(int id)
              : base(id)
          { }
          
          public int ChildCValue1 { get { return childCValue1; } }
          public int ChildCValue2 { get { ret
          
          B J 2 Replies Last reply
          0
          • P Pete OHanlon

            Yes it does, and there's nothing wrong with doing this. The problem with FxCop is that it's very arbitrary with its rules, many of which are excessively anal.

            *pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

            "Mind bleach! Send me mind bleach!" - Nagy Vilmos

            CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

            D Offline
            D Offline
            DaveyM69
            wrote on last edited by
            #12

            In VS2012 you still get the warning

            contains a call chain that results in a call to a virtual method defined by the class

            Dave
            Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
            BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

            1 Reply Last reply
            0
            • B BobJanova

              The reason this is a warning is because you can get yourself into some really nasty messes by doing this, if you don't understand it. The virtual method that you override in the subclasses is run with an incompletely initialised object – in particular its own constructor has not yet run so you don't have access to any instance variables, even those set in a constructor or in field initialisers (as they're compiled into the constructor too). You've obviously simplified your example a lot and in this case you can provide a protected setter for Id and create the specific data objects in the subclass constructors. I'd say that's a better approach if it's possible.

              D Offline
              D Offline
              DaveyM69
              wrote on last edited by
              #13

              Yeah, that's quite possible and may be what I end up doing. I'd like to mark the relevant fields (at least in the base) read only ideally which is primarily why I'm trying to manipulate from the constructor, along with the fact that this is all to do with construction of the objects so it is the logical place!

              Dave
              Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
              BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

              1 Reply Last reply
              0
              • D DaveyM69

                jschell wrote:

                why would the base ctor care about child initialization values when all the base ctor should be doing is initializing the base ctor

                The child needs to self initialize with values retrieved from an unmanaged function call (the function is different for each child type) - then pass the common values to the base so it can initialize itself. What I was trying to do was force a method to be called when the base constructor runs that 1. calls the unmanaged function (hence it needing to be in called from the child as only the child should know what unmanaged function to call, and therefore needs to be an abstract method) 2. the child initializes it's unique fields 3. passes the common values back into the base constructor (hence the out parameters) Perhaps this code will make it clearer...

                public abstract class Base
                {
                private int commonValue1;
                private int commonValue2;
                private int id;

                protected Base(int id)
                {
                    this.id = id;
                    Initialize(out commonValue1, out commonValue2); // CA2214
                }
                
                public int CommonValue1
                {
                    get { return commonValue1; }
                }
                public int CommonValue2
                {
                    get { return commonValue2; }
                }
                public int Id
                {
                    get { return id; }
                }
                
                protected abstract void Initialize(out int commonValue1, out int commonValue2);
                

                }

                public class ChildA : Base
                {
                public ChildA(int id)
                : base(id)
                { }

                protected override void Initialize(out int commonValue1, out int commonValue2)
                {
                    DataA data;
                    NativeMethods.UnmanagedFunctionGetChildAData(Id, out data);
                    commonValue1 = data.Value1;
                    commonValue2 = data.Value2;
                }
                

                }

                public class ChildB : Base
                {
                private int childBValue;

                public ChildB(int id)
                    : base(id)
                { }
                
                public int ChildBValue { get { return childBValue; } }
                
                protected override void Initialize(out int commonValue1, out int commonValue2)
                {
                    DataB data;
                    NativeMethods.UnmanagedFunctionGetChildBData(Id, out data);
                    commonValue1 = data.Value1;
                    commonValue2 = data.Value2;
                    childBValue = data.Value3;
                }
                

                }

                public class ChildC : Base
                {
                private int childCValue1;
                private int childCValue2;

                public ChildC(int id)
                    : base(id)
                { }
                
                public int ChildCValue1 { get { return childCValue1; } }
                public int ChildCValue2 { get { ret
                
                B Offline
                B Offline
                Bernhard Hiller
                wrote on last edited by
                #14

                I use a similar pattern, but instead of private member variables in the abstract base class and passing them as out parameters, I use protected member variables and call a parameterless function (the derived class may access them in other overridable functions). Visual Studio 2010 gives that CA2214 warning, too. I feel comfortable with this pattern, and ignore the warning.

                1 Reply Last reply
                0
                • D DaveyM69

                  jschell wrote:

                  why would the base ctor care about child initialization values when all the base ctor should be doing is initializing the base ctor

                  The child needs to self initialize with values retrieved from an unmanaged function call (the function is different for each child type) - then pass the common values to the base so it can initialize itself. What I was trying to do was force a method to be called when the base constructor runs that 1. calls the unmanaged function (hence it needing to be in called from the child as only the child should know what unmanaged function to call, and therefore needs to be an abstract method) 2. the child initializes it's unique fields 3. passes the common values back into the base constructor (hence the out parameters) Perhaps this code will make it clearer...

                  public abstract class Base
                  {
                  private int commonValue1;
                  private int commonValue2;
                  private int id;

                  protected Base(int id)
                  {
                      this.id = id;
                      Initialize(out commonValue1, out commonValue2); // CA2214
                  }
                  
                  public int CommonValue1
                  {
                      get { return commonValue1; }
                  }
                  public int CommonValue2
                  {
                      get { return commonValue2; }
                  }
                  public int Id
                  {
                      get { return id; }
                  }
                  
                  protected abstract void Initialize(out int commonValue1, out int commonValue2);
                  

                  }

                  public class ChildA : Base
                  {
                  public ChildA(int id)
                  : base(id)
                  { }

                  protected override void Initialize(out int commonValue1, out int commonValue2)
                  {
                      DataA data;
                      NativeMethods.UnmanagedFunctionGetChildAData(Id, out data);
                      commonValue1 = data.Value1;
                      commonValue2 = data.Value2;
                  }
                  

                  }

                  public class ChildB : Base
                  {
                  private int childBValue;

                  public ChildB(int id)
                      : base(id)
                  { }
                  
                  public int ChildBValue { get { return childBValue; } }
                  
                  protected override void Initialize(out int commonValue1, out int commonValue2)
                  {
                      DataB data;
                      NativeMethods.UnmanagedFunctionGetChildBData(Id, out data);
                      commonValue1 = data.Value1;
                      commonValue2 = data.Value2;
                      childBValue = data.Value3;
                  }
                  

                  }

                  public class ChildC : Base
                  {
                  private int childCValue1;
                  private int childCValue2;

                  public ChildC(int id)
                      : base(id)
                  { }
                  
                  public int ChildCValue1 { get { return childCValue1; } }
                  public int ChildCValue2 { get { ret
                  
                  J Offline
                  J Offline
                  jschell
                  wrote on last edited by
                  #15

                  DaveyM69 wrote:

                  Perhaps this code will make it clearer...

                  And what do you think is the problem with making the based members protected? Or providing a protected setter for those members?

                  D 1 Reply Last reply
                  0
                  • J jschell

                    DaveyM69 wrote:

                    Perhaps this code will make it clearer...

                    And what do you think is the problem with making the based members protected? Or providing a protected setter for those members?

                    D Offline
                    D Offline
                    DaveyM69
                    wrote on last edited by
                    #16

                    jschell wrote:

                    based members protected

                    Non private fields are generally not considered a great idea.

                    jschell wrote:

                    protected setter for those members

                    No problem with that, but it implies to inheriting classes that the fields that are protected by the property can be changed after initialization which is not the case - easy to protect against in code and so long as I document this well then that's OK.

                    Dave
                    Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
                    BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

                    J 1 Reply Last reply
                    0
                    • D DaveyM69

                      jschell wrote:

                      based members protected

                      Non private fields are generally not considered a great idea.

                      jschell wrote:

                      protected setter for those members

                      No problem with that, but it implies to inheriting classes that the fields that are protected by the property can be changed after initialization which is not the case - easy to protect against in code and so long as I document this well then that's OK.

                      Dave
                      Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
                      BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

                      J Offline
                      J Offline
                      jschell
                      wrote on last edited by
                      #17

                      DaveyM69 wrote:

                      Non private fields are generally not considered a great idea.

                      But calling child methods in a ctor is?

                      DaveyM69 wrote:

                      it implies to inheriting classes that the fields that are protected by the property can be changed after initialization

                      A child can misuse the contract with a parent in any number of ways. There is no way to prevent that.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups