Click here to Skip to main content
15,906,463 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am very new to C++. So anyone can explain me what the below statement is doing:

C++
H_Hash << set_H(COL1) << "Test_OP" << _TempTotals[i] << '\n';
Posted
Updated 7-Sep-15 3:59am
v3
Comments
chandanadhikari 7-Sep-15 9:59am    
hi,
think you need to show us more code before any suggestions can be made. its hard to understand what are all those variables just by looking at 1 line.
Kindly mention what you are trying to implement.

1 solution

Well, it depends on the type of the object H_Hash, because, you know, in C++ you may redefine the operators (like <<).
It also depends on the set_H definition (it could be a simple function returning a string - or whatever - or an output manipulator instance).
That is you need to show us more code in order to get better help.
 
Share this answer
 
v2
Comments
Maciej Los 7-Sep-15 10:22am    
+5!
CPallini 7-Sep-15 11:57am    
Thank you!
Sergey Alexandrovich Kryukov 7-Sep-15 14:41pm    
Exactly, a 5.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900