본문 바로가기

Development

(128)
포인터 개념 C 언어의 꽃 포인터(Pointer)입니다. 대학 시절 때도 포인터에 막혀서 제 학점을 후루룩 말아 잡쉈는데, 이제 피할 수 없는 시기가 와서 한번 정리를 하려고 합니다. 포인터는 왜 쓸까요? 포인터 변수는 변수의 주솟값을 받는 변수인데 과연 어디에 쓰려고 하는걸까요? 포인터 변수를 사용하는 이유를 알려면 주솟값의 존재 이유를 알면 됩니다. 우리는 인터넷에서 쇼핑을 하면 배송지에 꼭 집의 주소를 적습니다. 그 곳으로 물건을 배달하지요. 이렇듯 주소는 특정 위치를 정확히 알려주는 지표입니다. 컴퓨터에서도 주솟값은 방대한 메모리에서 해당 변수가 저장되어 있는 위치를 정확히 알려주는 역할을 합니다. 즉, 포인터 변수는 저장된 주솟값을 통해 언제든지 해당 변수에 접근할 수 있게 됩니다. 물론 수정도 가능하죠. ..
Hokuyo Distance Data in Unreal Engine 4 드디어 함.
FString (Hex String) to TArray<uint8> (byteArray) 사용 되는 주요 함수 FString::ToHexBlob https://docs.unrealengine.com/latest/INT/API/Runtime/Core/Containers/FString/ToHexBlob/index.html 사용법 ? 1 2 3 4 5 6 7 8 9 FString exampleData = TEXT("89504e470d0a1a0a000000"); TArray rtnData; // De-hex string into TArray const int32 DataLength = exampleData.Len() / 2; rtnData.Reset( DataLength ); rtnData.AddUninitialized( DataLength ); FString::ToHexBlob( exampleDa..
Splitting a string by another string FString::ParseIntoArray 8 Breaks up a delimited string into elements of a string array. TArray Out; SomeString.ParseIntoArray(Out,TEXT(","),true); Out array will be filled with sub-strings, 2nd argument is separator string (in this case “,”) which tells function in what places sperate the string. It’s quite heavy function so don’t use it on long text. If you have only one or few spectator in str..
Unreal Logging Logging Logging means keeping an ordered record of events, function calls, variable values at a certain time during runtime, etc. This is usually saved in the form of text in a log file. Logging Syntax Here is an example of a simple log message: UE_LOG(LogTemp, Warning, TEXT("Hello")); If you're not getting any output from the logging statements, ensure you are compiling the project before you t..
FString::ParseIntoArray - String 쪼개기(?) 보호되어 있는 글입니다.
GitHub Server Status site https://www.githubstatus.com/ GitHub Status All Systems Operational Git Operations ? Operational API Requests ? Operational Webhooks ? Operational Visit www.githubstatus.com for more information Operational Issues ? Operational Pull Requests ? Operational GitHub Actions ? Operational GitHub Packages www.githubstatus.com
How to fix ‘failed to push some refs to’ Git errors What is ‘failed to push some refs to’ error failed to push some refs to is a Git error that many developers frequently face. It occurs when a developer attempts to push committed code to an external git repository. The ability to push code stopped working suddenly, despite it working yesterday or the day before. It can be a source of frustration and annoyance for many. failed to push some refs t..