블로그
-
아무렇게나 c# 정리 노트- [1]
const, continue, default, do, double, else, enum, extern, float, for, goto, if, int, long, return, short , sizeof, static, struct, switch, typeof, void, while C++(19개) : bool, catch, class, false, finally,
blog.naver.com · 2021.07.18
-
20.3.23
package Ex01; public class OperationEx1 { public static void main(String[] args) { //강제형변환 //자동형변환 // 자료 숫자 정수형, 실수형 변수 //byte short int long byte b=10; byte b2=20; byte b3; b3 = (byte)(b+b2);//연산자 +는 4바이트이다
blog.naver.com · 2020.03.25
-
8일차 JAVA 간단 공부 (컬렉션 프레임웍)
Wrapper 클래스로는 Byte(byte형), Short(short형), Integer(int 형), Long(long형), Float(float형), Double(double형) - Integer(int value) => 생성자로 35 같은 int를 Integer로 바꾼다 - Integer(String s) => "35"를 35로 변환 - static
blog.naver.com · 2017.07.20
-
[MSDN] String.Format Method (String, Object)
any format items are replaced by the string representation of arg0. public class Example{ public static void Main() { short[] values= { Int16.MinValue, -27, 0, 1042, Int16.MaxValue }; Console.WriteLine("{
blog.naver.com · 2010.08.06
-
[KimStar Blog] C# - WinForm 제어하기
category=18 01.public enum ShowWindowStyles : short 02.{ 03. HIDE = 0, 04. SHOWNORMAL = 1, 05. [DllImport("user32.dll")] 21.static public extern bool ShowWindow(IntPtr hWnd, ShowWindowStyles State
blog.naver.com · 2010.08.07