Hello!
May I ask about the class early return, what is the purpose of using return; in an if? My understanding is, its run the result of the things inside the " if " earlier then the if that don’t have a return; ?
if so , how does it help to test the program? or is it the purpose of early return?
Also, are the C++ have things like a time line? which for example I have two function I want to run, A & B, , If I put A above B in the program , A will run first or The both run simultaneously?
Another question is the "An FString is a TArray of TCHAR "
I am not sure if I understand it, So for a word Cakes, It is a 5 characters (or 4 ? because start from zero? and also plus the \0 thing which is another thing i am not sure what it is )
So Cakes is 5 FString which is 1 array of tchar? or what is it?