[UE4]FString常用API

 

 将int转换为string

FString::FromInt(int32 Num);

 

将FString转换为char*

FString s;

char *c = *s;

 

 

你可能感兴趣的:(UE4)