블로그
- 텝스시험 위한 텝스문제! It is not surprising that the general public is ________ with so many messages in this information age (A) crowded (B) fraught (C) bombarded (D) balanced 답) (C) 해석) 그것은 놀랄 일이 아니다/ 대중이 너무나 많은 메시지로 폭격을 당하고
- 자바 jButtonStore; JButton jButtonLoad; JButton jButtonList; JTextArea jTextAreaDisplay; private String mFilePos; public MyPanel() { mNames = new String[10]; mFruit = new int[10]; mCount = 0; makeComponent(); mFilePos = "c:
- Inner Class Inner Class - Inner 클래스에는 모든 접근 제어자(static, public, private, protected) 를 사용할 수 있다. - static 클래스 [ex (메서드 밖에서는 사용불가) [ex] class A{ public void InnerTest (int k) { final int c = k; class Inner { public .
- [WROX] Working with ListView using System.Text;using System.Windows.Forms; using System.IO; namespace WindowsFormsApplication2{ public \"); folderCol.Add(@"C:\"); } private void CreateHeadersAndFillListView() { Colum.......
- [KimStar Blog] C# - ListView 컬럼 클릭 시 정렬하기 C# - ListView 컬럼 클릭 시 정렬하기 http://www.kimstar.pe.kr/blog/150? string sort = "asc"; 07. public ListViewItemComparer() 08. { 09. col = 0; 10. } 11. 12. /// 13. ///
- [KimStar Blog] C# - WinForm 제어하기 C# - WinForm 제어하기 http://www.kimstar.pe.kr/blog/140? category=18 01.public enum ShowWindowStyles : short 02.{ 03. HIDE = 0, 04. SHOWNORMAL = 1, 05.
- [KimStar Blog] C# - DES 파일 암호화 / 복호화 Encode Decode C# - DES 파일 암호화 / 복호화 http://www.kimstar.pe.kr/blog/152? category=18 01.private string PassWord = "암호(8byte)"; 02. 03. 04.public void EncryptFile(string ReadFilename
- [KimStar Blog] C# - 배열중 중복된 값을 제거 C# - 배열중 중복된 값을 제거 http://www.kimstar.pe.kr/blog/134? 01.public T[] GetDistinctValues(T[] array) 02.{ 03.
- [C#학습셀01-06] How to: Create a Non-Rectangular Button [C#학습셀01-06] How to: Create a Non-Rectangular Button http://msdn.microsoft.com/en-us/library/h4te2zh2 Example public Form2(){ // // Required for Windows Form Designer support. // InitializeComponent(); /
- 쓰레드에 안전한 싱글톤 클래스를 만드는 세가지 방법 m=devtip&b=javatip&c=r_p&n=1028393658+ 펌 내용 쓰레드 세이프 싱글톤을 효율적으로 구현하기 위한 DCL(더블체크락킹)방법이고안되었었습니다.그러나 정설입니다.현재 어떤 플랫폼상에서도 완벽히 동작한다고 보장 받을 수 있는 코드는세가지가 있습니다.1) static 필드에서 초기화 하는 방법public class Singleton { public