Use of 'const' for function parameters

前端 未结 30 2709
借酒劲吻你
借酒劲吻你 2020-11-22 03:06

How far do you go with const? Do you just make functions const when necessary or do you go the whole hog and use it everywhere? For example, imag

相关标签:
30条回答
  • 2020-11-22 03:20

    If the parameter is passed by value (and is not a reference), usually there is not much difference whether the parameter is declared as const or not (unless it contains a reference member -- not a problem for built-in types). If the parameter is a reference or pointer, it is usually better to protect the referenced/pointed-to memory, not the pointer itself (I think you cannot make the reference itself const, not that it matters much as you cannot change the referee). It seems a good idea to protect everything you can as const. You can omit it without fear of making a mistake if the parameters are just PODs (including built-in types) and there is no chance of them changing further along the road (e.g. in your example the bool parameter).

    I didn't know about the .h/.cpp file declaration difference, but it does make some sense. At the machine code level, nothing is "const", so if you declare a function (in the .h) as non-const, the code is the same as if you declare it as const (optimizations aside). However, it helps you to enlist the compiler that you will not change the value of the variable inside the implementation of the function (.ccp). It might come handy in the case when you're inheriting from an interface that allows change, but you don't need to change to parameter to achieve the required functionality.

    0 讨论(0)
  • 2020-11-22 03:21

    When I coded C++ for a living I consted everything I possibly could. Using const is a great way to help the compiler help you. For instance, const-ing your method return values can save you from typos such as:

    foo() = 42
    

    when you meant:

    foo() == 42
    

    If foo() is defined to return a non-const reference:

    int& foo() { /* ... */ }
    

    The compiler will happily let you assign a value to the anonymous temporary returned by the function call. Making it const:

    const int& foo() { /* ... */ }
    

    Eliminates this possibility.

    0 讨论(0)
  • 2020-11-22 03:22

    Sometimes (too often!) I have to untangle someone else's C++ code. And we all know that someone else's C++ code is a complete mess almost by definition :) So the first thing I do to decipher local data flow is put const in every variable definition until compiler starts barking. This means const-qualifying value arguments as well, because they are just fancy local variables initialized by caller.

    Ah, I wish variables were const by default and mutable was required for non-const variables :)

    0 讨论(0)
  • 2020-11-22 03:23

    The following two lines are functionally equivalent:

    int foo (int a);
    int foo (const int a);
    

    Obviously you won't be able to modify a in the body of foo if it's defined the second way, but there's no difference from the outside.

    Where const really comes in handy is with reference or pointer parameters:

    int foo (const BigStruct &a);
    int foo (const BigStruct *a);
    

    What this says is that foo can take a large parameter, perhaps a data structure that's gigabytes in size, without copying it. Also, it says to the caller, "Foo won't* change the contents of that parameter." Passing a const reference also allows the compiler to make certain performance decisions.

    *: Unless it casts away the const-ness, but that's another post.

    0 讨论(0)
  • 2020-11-22 03:23

    If you use the ->* or .* operators, it's a must.

    It prevents you from writing something like

    void foo(Bar *p) { if (++p->*member > 0) { ... } }
    

    which I almost did right now, and which probably doesn't do what you intend.

    What I intended to say was

    void foo(Bar *p) { if (++(p->*member) > 0) { ... } }
    

    and if I had put a const in between Bar * and p, the compiler would have told me that.

    0 讨论(0)
  • 2020-11-22 03:23

    I know the question is "a bit" outdated but as I came accross it somebody else may also do so in future... ...still I doubt the poor fellow will list down here to read my comment :)

    It seems to me that we are still too confined to C-style way of thinking. In the OOP paradigma we play around with objects, not types. Const object may be conceptually different from a non-const object, specifically in the sense of logical-const (in contrast to bitwise-const). Thus even if const correctness of function params is (perhaps) an over-carefulness in case of PODs it is not so in case of objects. If a function works with a const object it should say so. Consider the following code snippet

    #include <iostream>
    
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    class SharedBuffer {
    private:
    
      int fakeData;
    
      int const & Get_(int i) const
      {
    
        std::cout << "Accessing buffer element" << std::endl;
        return fakeData;
    
      }
    
    public:
    
      int & operator[](int i)
      {
    
        Unique();
        return const_cast<int &>(Get_(i));
    
      }
    
      int const & operator[](int i) const
      {
    
        return Get_(i);
    
      }
    
      void Unique()
      {
    
        std::cout << "Making buffer unique (expensive operation)" << std::endl;
    
      }
    
    };
    
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    void NonConstF(SharedBuffer x)
    {
    
      x[0] = 1;
    
    }
    
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    void ConstF(const SharedBuffer x)
    {
    
      int q = x[0];
    
    }
    
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    int main()
    {
    
      SharedBuffer x;
    
      NonConstF(x);
    
      std::cout << std::endl;
    
      ConstF(x);
    
      return 0;
    
    }
    

    ps.: you may argue that (const) reference would be more appropriate here and gives you the same behaviour. Well, right. Just giving a different picture from what I could see elsewhere...

    0 讨论(0)
提交回复
热议问题