블로그
-
[스크랩] Draggable Panel
This Android library offers you two main classes to use and create your own awesome user interfaces. This new component has been created using some concepts described on Flavien Laurent Blog and Denevell
blog.naver.com · 2014.07.11
-
[C++][구조체][Struct] 구조체 포인터를 사용한 예시
-> 애로우 연산자 str->멤버 (1) #include using namespace std; struct Rectangle{ int x,y,width,height; } < using namespace std; struct Dizzy{ int id; Dizzy*.......
blog.naver.com · 2014.01.24
-
ifostream, ofstream 파일 입출력.
파일 읽기 - ifstream 형식 : ifstream 객체명("파일명"); 예제 코드 #include #include using namespace std; int main() 파일에 출력 - ofstream 형식 : ofstream 객체명("파일명"); 예제코드 #include #include using namespace std; int main()
blog.naver.com · 2013.11.24
-
(영진전문대 컴퓨터프로그래밍전공반) C++ 상속에서 생성자와 소멸자
#include using namespace std; class Shape { int x, y; public: Shape() { cout << "Shape 생성자()" Rectangle 생성자()" << endl; } ~Rectangle() { cout << "Rectangle 소멸자()" << endl; } }; int main
blog.naver.com · 2012.11.20
-
(영진전문대 컴퓨터프로그래밍전공반) c++ 7장 연습문제(programming)
또 반대로 마일을 킬로미터로 변환하는 정적 메소드 mileToKilo()로 작성하라. main()에서 이들 정적 메소드를 호출하여 테스트하여 보자. 1마일 == 1.609344킬로미터 1킬로미터 == 0.621371마일 #include #include using namespace std; class MyMetric { public: static double
blog.naver.com · 2012.11.19
-
(영진전문대 컴퓨터프로그래밍전공반) c++ +연산자 함수 작성
// 실습) + 연산자 함수 작성 (p.389) /* #include #include using namespace std; class Vector { friend Vector operator , const Vector& v2) { Vector v(0.0, 0.0); v.x = v1.x + v2.x; v.y = v1.y+ v2.y; return v; } int main
blog.naver.com · 2012.12.03
-
(영진전문대 컴퓨터프로그래밍전공반) C++ 9장 LAB
// 실습 (p.377 LAB) #include #include using namespace std; class Base { public: int x; Base(): x(0) { x = 100; } virtual void print() { cout << "Derived Class print() " << endl; } }; void main
blog.naver.com · 2012.11.27
-
CMD, Command Shell (Console Mode ) 실행 - CMD명령어 O P Q
By using the Netsh commands for IPSec, you can configure and view static or dynamic IPSec main mod...
blog.naver.com · 2011.02.19
-
[C#학습셀03-14] How to: Retrieve Data from a Dialog Box
For more information, see Using Built-in Dialog Boxes in Your Application. Forms development is displaying a dialog box to collect information when a user clicks a button on the main
blog.naver.com · 2010.06.02
-
Python Intro...
Main article: Python syntax and semantics Python was designed to be a highly readable language. It aims toward an uncluttered visual layout, using English keywords frequently where other languages
blog.naver.com · 2008.05.19