블로그
- c# tag로 컨트롤을 찾기 => c ! => c !
- c# ToString() Format /* C#: The Complete Reference by Herbert Schildt Publisher: Osborne/McGraw-Hill (March 8, 2002) ISBN: 0072134852 */ // Use ToString() to format values. using System; public class ToStringDemo { public static
- 이미지 투명도 class ImageTest { public static void main(final String[] arguments) throws Exception { final String inputFileName = "C:\\Users\\mkang\\Pictures\\image\\박신혜_1.png"; final String outputFileName = "C:\\Users
- unzip file class UnZipFileTest { public static void main(String[] args) throws UnsupportedEncodingException { try { ZipFile zipFile = new ZipFile("C://Users//kkk//Downloads//d1.zip"); String rootFileNam.......
- [java] print와 println, printf 비교 및 printf에서 사용되는 서식 지정자 종류 123456789101112131415public class PrintfTest { public static void main(String[] args) { String name=" System.out.printf("My name is %s\n", name); /* * printf에서 사용되는 서식 지정자의 종류 * 문자열 %s * 정수 %d * 실수 %f * 문자 한 자 %c
- [영진전문대학컴퓨터정보계열컴퓨터프로그래밍전공반] 상속 예제 class Car{ int speed; int gear; public String color; public void speedUp(int increment){ speed += increment turbo; public void setTurbo(boolean newValue){ turbo = newValue; } public String toString(){ return
- [C++] template class 주의점 즉 템플릿클래스를 사용하게 된다면 헤더파일에 모든 내용을 작성하고 사용해야한다. error LNK2019: "public: void __thiscall CTemplateTest::setNum C:\Users\MAIN\Documents\Visual Studio 2010\Projects\test\test\test.obj
- 이미지파일 비교예제 import java.awt.Image; import java.awt.Toolkit; import java.awt.image.PixelGrabber; public class ImageCompare file2 = "c:/Users/davinci/Downloads/wallpaper-1266396.jpg"; Image image1 = Toolkit.getDefaultToolkit
- fatal error LNK1120: 1개의 확인할 수 없는 외부 참조입니다. 1>ImagePro.obj : error LNK2001: "public: void __thiscall CAboutDlg::OnPixelInvertion(void)" (? OnPixelInvertion@CAboutDlg@@QAEXXZ) 외부 기호를 확인할 수 없습니다. 1>C:\visualstudio2010_projects\ImagePro\Debug
- [영진전문대 컴퓨터정보계열프로그래밍전공] 10월 31일 수업내용 { Counter sharedCounter; public MyThread(Counter c) { this.sharedCounter = c; } public void run() { class sdf { public static void main(String[] args) { Counter c = new Cou.......