[Solved] Shift operator usage in terms of classes

Take a look at the BitCoin documentation. vRecv is an instance of CDataStream which overloads the operator>> to read and unserialize data. Background To understand the expression, precedence and associativity of operators are important. In C++, the >> operator is left-associative, which means you can rewrite your expression (vRecv >> locator) >> hashStop; // Or … Read more