I would like to know if the compiler (I'm using VS 2015) optimizes also if the same character is found when it checks the code?
Example:
wstrFile.find_last_of(L"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
wstrFile.find_last_of(L"aefgh");
"aefgh" (used two times) are stored once only somewhere when the program is started?
Otherwise, is it useful to store them in a variable to gain (a little bit) space? (in all cases, I will use this variable further)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…