Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ C ++ 11 feature: decltype keywords     - Linux system Passwd file detailed analysis (Linux)

- 22 Port weak passwords and SSH connection program of the Linux server (Linux)

- Android gets the global process information and the memory used by the process (Programming)

- Bash code injection attacks through a special environment variable (Linux)

- Browser caching mechanism on the analysis (Linux)

- Create a custom pixel format based on an existing image data BufferedImage (Programming)

- Using Java arrays implement sequential stack (Programming)

- Git 2.5 increase in the working tree, triangle improved workflow performance (Linux)

- Examples of testing and installation Mesos on CentOS (Linux)

- Linux system monitoring tool set cpu (Linux)

- Linux more efficient than select a model epoll (Linux)

- GoldenGate update is missing (Database)

- Linux System Tutorial: How to Check MariaDB server versions (Database)

- How to find out a Unix system library files are 32-bit or 64-bit (Linux)

- Bubble Sort Algorithms (Programming)

- C language binary tree (Programming)

- MySQL concat function is SQL injection (Linux)

- To install JDK1.7 and compiler Hadoop-2.7.1 under CentOS7 (Server)

- Ubuntu users install the Download Manager software Xdman 5.0 (Linux)

- Dynamic programming Android (Programming)

 
         
  C ++ 11 feature: decltype keywords
     
  Add Date : 2018-11-21      
         
         
         
  Decltype Profile

typeid operator we used before to query a variable type, this type of query at run time. RTTI mechanism for each type produces a type_info types of data, and the variable corresponding type_info typeid query returns data, the return type the name of the member function by name. While in C ++ typeid 11 also provides hash_code this member function that returns the type of unique hash value. RTTI can lead to run-time efficiency is lowered, and in generic programming, we need to determine is necessary to compile-time type, RTTI and unable to meet such requirements. Compile-time type inference for generic programming is the emergence, in the non-generic programming, our types are identified, there is no further derivation.

The compile-time type inference, in addition to the auto keyword we said, there's this article decltype.

decltype and auto keywords, used for compile-time type inference, but it still has some differences with the auto. Decltype type of type inference is not the same as auto variable declarations from initialization expression obtained variable, but always with a common expression as a parameter and return type of the expression, and will not have expressions decltype evaluated.

decltype Usage

Derived expression type

    int i = 4;
    decltype (i) a; // result is derived int. a type of int.
In combination with using / typedef, used to define the type.

    using size_t = decltype (sizeof (0)); // sizeof (a) the return value of type size_t
    using ptrdiff_t = decltype ((int *) 0 - (int *) 0);
    using nullptr_t = decltype (nullptr);
    vector vec;
    typedef decltype (vec.begin ()) vectype;
    for (vectype i = vec.begin; i = vec.end ();! i ++)
    {
        // ...
    }
Such as auto and also to improve the readability of the code.

Reuse anonymous type

In C ++, we sometimes encounter a number of anonymous types, such as:

struct
{
    int d;
    doubel b;
} Anon_s;
And with decltype, we can re-use this anonymous structure:

decltype (anon_s) as; // defines an anonymous structure above
Generic programming combined with auto, used to track the return value type

This is the largest use of decltype.

template
auto multiply (_Tx x, _Ty y) -> decltype (_Tx * _Ty)
{
    return x * y;
}
decltype derived four rules

If e is not a bracketed tag expression or class member access expression, so decltype (e) is the type of the named entity e. In addition, if e is an overloaded function will result in a compilation error.
Otherwise, assume that the type of e is T, will die if e is a value, then decltype (e) for the T &&
Otherwise, assume that the type of e is T, if e is an lvalue, then decltype (e) for the T &.
Otherwise, assuming the type of e is T, then the decltype (e) for the T.
Tag refers to the removal of the programmer tag keywords, literals and other compilers need to use outside their own definition of the mark, while a single tag is the tag corresponding expression expressions. E.g:

int arr [4]
Arr is a marker expression, and arr [3] +0 not.

Let's look at the following code:

    int i = 10;
    decltype (i) a; // a derivation of int
    decltype ((i)) b = i; // b deduced to be int &, have their initialization, otherwise the compilation error
Just as i added (), it has led to differences in type inference results. This is because, i is a marker expression, according to the derivation rule 1, it is deduced to type int. And (i) as an lvalue expression, so the type is deduced to be int &.

We can derive four rules for more information about the following code

    int i = 4;
    int arr [5] = {0};
    int * ptr = arr;
    struct S {double d;} s;
    void Overloaded (int);
    void Overloaded (char); // overloaded function
    int && RvalRef ();
    const bool Func (int);
 
    // Rule number one: to derive its type
    decltype (arr) var1; // int marker expression
 
    decltype (ptr) var2; // int * marker expression
 
    decltype (s.d) var3; // doubel member access expressions
 
    // Decltype (Overloaded) var4; // overloaded functions. Compilation errors.
 
    // Rule number two: the death value. Derivation for the type of rvalue references.
 
    decltype (RvalRef ()) var5 = 1;
 
    // Rule number three: the left value is derived for the type of reference.
 
    decltype ((i)) var6 = i; // int &
 
    decltype (true i:? i) var7 = i; // int & conditional expression returns a value left.
 
    decltype (++ i) var8 = i; // int & ++ i return i lvalue.
 
    decltype (arr [5]) var9 = i;. // int & [] operator returns an lvalue
 
    decltype (* ptr) var10 = i; // int & * Returns the value of the left
 
    decltype ( "hello") var11 = "hello"; // const char (&) [9] to the left of a string literal value, and is const lvalue.

 
    // Rule Four: None of the above, the derivation of the present type
 
    decltype (1) var12; // const int
 
    decltype (Func (1)) var13 = true; // const bool
 
    decltype (i ++) var14 = i; // int i ++ return the right value
It should be reminded that the string literals value is left and left is const value, instead of a string literal is a constant value of the right.
So many rules, we write the code for it will inevitably too difficult to remember, especially Rule number three. We can use the C ++ 11 standard library template class is_lvalue_reference added to determine whether the left expression value:

    cout << is_lvalue_reference :: value << endl;
Results 1 represents a value to the left, the right result for the non-0 value.
Similarly, there is_rvalue_reference this template class to determine whether decltype inference result for the right value.
     
         
         
         
  More:      
 
- RedHat Linux 5.5 installation process SVN Service Notes (Server)
- Java collections series (Programming)
- How to Start a Linux application running in the background using the terminal mode (Linux)
- Linux terminal program running in the background (Linux)
- Java development specifications summary (Programming)
- Install the latest Pinta graphics editing software on Ubuntu 14.04 (Linux)
- Seven kinds of NIC binding mode Detail (Linux)
- How to modify the Ubuntu terminal user name changed to red color (Linux)
- Use Aptik Battery Monitor monitoring Ubuntu laptop battery usage (Linux)
- The difference between statement and preparedStatement of the jdbc (Database)
- C ++ 11 feature: decltype keywords (Programming)
- Terminal fun: 6 interesting Linux command-line tools (Linux)
- Oracle create user authorization and in PLSQL (Database)
- How to track performance issues when using the Unity Game Development Android (Programming)
- Java String and StringBuffer and StringBuilder Comments (Programming)
- Three details reflect the Unix system security (Linux)
- Debian 7.6 install Nvidia graphics driver (Linux)
- Java in several ways of using MongoDB (Programming)
- OpenJDK 7 compiled under Ubuntu 14.04.3 64-bit (Linux)
- ImageMagick Tutorial: How to cut images in Linux command line (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.