C# 에서 string 과 String 의 차이점? 사실 이 두개는 똑같다.string 은 String 의 별칭일뿐. 뭘 쓰더라도 동일하게 동작한다.가독상 프로잭트에서 둘중 하나로 통일해서 쓰는게 좋다. 아래는 전체 별칭 목록. object: System.Object string: System.String bool: System.Boolean byte: System.Byte sbyte: System.SByte short: System.Int16 ushort: System.UInt16 int: System.Int32 uint: System.UInt32 long: System.Int64 ulong: System.UInt64 float: System.Single double: System.Double deci..
레디스는 공식 사이트에서 다운받을 수 있다. Redis 공식사이트 : https://redis.io 대상 서버가 윈도우라면? The Redis project does not officially support Windows. 레디스는 공식적으로 윈도우를 지원하지 않는다. 하지만 레디스는 오픈소스이기 때문에 Microsoft Open Tech group 에서 윈도우버전으로 포팅개발을 지속적으로 하고 있다. MS Open Tech group GitHub : https://github.com/MSOpenTech/redis 그런데 대상서버가 32Bit 라면? Officially support the 64-bit version only. 윈도우 레디스는 공식적으로 64비트만을 지원한다. 하지만. You can bu..
지시어 #include 와 #include "file" 의 차이점 #include - 시스템 헤더를 include 하는데 사용. - 컴파일러가 미리 정의해놓은 위치에서 파일을 찾음 (ex. /usr/include 또는 Program Files (x86)\Microsoft Visual Studio 12.0\VC\include ) #include "file" - 사용자 헤더를 include 하는데 사용 - 사용자의 소스가 위치한곳 - 사용자의 소스가 위치한곳에 없다면 컴파일러가 미리 정의해놓은 위치에서 다시 찾음 (때문에 이방식을 시스템헤더를 include해도 동작은 하지만 #include 로 사용해야 맞음) 아래는 Include Syntax에 대한 설명 https://gcc.gnu.org/onlinedoc..
- Total
- Today
- Yesterday