반응형 전체 글223 C# 소스코드: 기본구조 using System; //네임스페이스 이용 using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyNameSpace //네임스페이스 정의 { public struct MyStruct { } //구조체 interface IMyInterface { } //인터페이스 class MyClass1 //클래스 { private int x, y; //데이터멤버 public MyClass1() { } //생성자 public delegate int MyDelegate(); //대리자 public event MyDelegate MyEvent1; //이벤트 public vo.. 2016. 12. 22. C# 소스코드: Hello World 출력하기 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Hello { static void Main(string[] args) { Console.WriteLine("Hello World"); } } } 2016/11/06 - [C#] - C# 소스코드: 데이터 리터럴 타입 출력, DateTime객체 생성#C# #C# 소스코드 #Hello World 출력하기 2016. 12. 22. 자바 소스코드: 탭팬 만들기 package javaapplication49; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class TabbedPaneEx extends JFrame{ TabbedPaneEx(){ this.setTitle("탭팬 만들기 예제"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JTabbedPane pane=createTabbedPane(); this.add(pane, BorderLayout.CENTER); this.setSize(250, 250); this.setVisible(true); } JTabbedPane createTabb.. 2016. 12. 22. 자바 소스코드: JColorChooser 만들기 package javaapplication48; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class MenuAndColorChooserEx extends JFrame{ JLabel label = new JLabel("Hello"); MenuAndColorChooserEx(){ this.setTitle("JColorChooser 예제"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); label.setHorizontalAlignment(SwingConstants.CENTER); label.setFont(new Font("Ravie",.. 2016. 12. 22. 이전 1 ··· 12 13 14 15 16 17 18 ··· 56 다음 반응형