목록언어/C# (31)
Machineboy空
제곱 관련Math.Pow(,)int result = Math.Pow(2,3);// 2^3 = 8 즉, 2의 3제곱Math.Sqrt()int result = Math.Sqrt(16);// 16의 제곱근 = 4절댓값Math.Abs()int result = Math.Abs(-10); // 10반올림, 반내림 관련Math.Ceiling()주어진 값보다 크거나 같은 가장 작은 정수 반환.double result = Math.Ceiling(2.3); // 3 Math.Floor()주어진 값보다 작거나 같은 가장 큰 정수 반환.double result = Math.Floor(2.3); // 2Math.Round()0.5 기준으로 주어진 값 반올림double result = Math.Round(2.3); // 2do..
string[] inputs = Console.ReadLine().Split();여기서 NullReferenceException이 발생되었다.이유는 즉슨, Console.ReadLine()이 Null일 때 Split을 해주려고 해서 였다. Split하기 전에 null인지 체크해주었더니 해결. string input = Console.ReadLine();if (string.IsNullOrWhiteSpace(input)){ return; }string[] edge = input.Split(); https://learn.microsoft.com/ko-kr/dotnet/api/system.nullreferenceexception?view=net-8.0 NullReferenceException 클래스 (Syst..
문제 풀이시, 입력을 좀 더 효율적으로 처리하기 위해서 정리해둔다.입력: 입력값을 정수로 바꾸기string input = Console.ReadLine();int num = int.Parse(input);int input = int.Parse(Console.ReadLine());입력: 여러 개의 입력값을 공백으로 구분하여 나누기string input = Console.ReadLine();string[] splited = input.Split(' ');string[] input = Console.ReadLine().Split();입력: 입력 길이가 정해져 있지 않은 경우while(true){ string input = Console.ReadLine(); if(input == null) bre..
메소드 오버로딩이란?하나의 메소드 이름에 여러 개의 구현을 올리는 것메소드 호출 코드에 사용되는 파라미터의 수와 형식을 분석해서 알맞은 메소드 형식을 불러준다.int Plus(int a, int b){ return a + b;}double Plus(double a, double b){ return a + b;}int result1 = Plus(1,2); // int를 매개변수로 하는 위 함수를 호출double result2 = Plus(3.1,2.4); // double을 매개변수로 하는 아래 함수를 호출메소드 오버로드 규칙number of parameter 혹은 type of parameter 중 하나라도 달라야 한다.based on return type인 오버로딩 함수는 없다.오로지 파라미터로만..
IDisposable을 활용한 resource-cleanup 자원해제use the IDipose interface to signal that some object's resource or other program state needed to be released or reset when the object was no longer requiredrelying on the garbage collector would not achieve this or provide the required level of control가비지 컬렉터더 이상 사용되지 않는 객체를 자동으로 메모리에서 제거하는 역할.메모리 누수를 방지하고 사용가능한 메모리를 확보할 수 있다.하지만 이러한 가비지 컬렉터는 데이터 베이스 연결이나, 네..

형식 변환(Type Convension)과 캐스팅(Casting)Casting and type convension are different ways of changing an expression from one data type to another.Cast Operator() // (int), (Random) 같은 형식의 것들long l = 1000L;int i = (int)l;object o = (int)l;Random r = (Random)o; // 이건 안되거든 is를 사용한 casting이 필요 if types are not compatible, an instance of InvalidCastException is thrown형식이 호환되지 않으면 예외가 발생한다.숫자의 경우: 변환된 값을 받는 ..
부동 소수점 형식(Floating Point type)소수점이 고정되어 있지 않고 움직이면서 수를 표현한다.소수점을 이동해 수를 표현하면 고정했을 때보다 더 제한된 비트를 이용해서 훨씬 넓은 범위의 값을 표현할 수 있기 때문3.14, 11.08 등과 같은 소수소수점을 표현하기 위해 일부 비트를 사용하기 때문에(게다가 부호도 표현해야 한다) 같은 크기의 정수 계열 형식과 같은 크기의 수를 표현할 수 없다.산술 연산 과정이 정수 계열 형식보다 복잡해서 느리다.float, doubleIEEE754 C#의 float과 double은 IEEE754라는 표준 알고리즘에 기반한 데이터 형식4byte(32bit)의 float형식의 수를 표현할 때1 bit : 부호 전용23 bit: 기수부: 수를 표현8bit: 지수부:..