Operations Dev
-
TestingSTLOperations Dev/Testing Timer 2010. 12. 10. 17:27
// TestingSTL.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다. // 구조체는 디폴트는 public 클래스는 프라이빗, 구조체는 자료형의 집합, 클래스는 자료형과 그것을 사용하는 멤버함수의 집합 #include "stdafx.h" #include #include #include #include #include using namespace std; class TestClass { public: TestClass(int x) :_x( x ) { } TestClass(TestClass const & rhs)//클래스의 인스턴스가 생성될때 호출된다. :_x(rhs._x) { } TestClass operator+(TestClass const & rhs) //TestClass를 리턴하는 이유는..
-
TestProcessStateModelOperations Dev/Testing Timer 2010. 12. 10. 16:49
// No3_TestTwoStateModel.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다. // #include "stdafx.h" #include #include #include using namespace std; #include "Timer\Timer.h" #include "Process.h" int const INTERLEAVING_TIME = 2000; int _tmain(int argc, _TCHAR* argv[]) { queue shortermQueue; shortermQueue.push(Process( L"AAAAAAAA", 10)); shortermQueue.push(Process( L"BBBBBBBB", 5)); shortermQueue.push(Proc..
-
TwoStatemodelOperations Dev/Testing Timer 2010. 12. 10. 16:47
// No2_TestingFiveStateModel.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다. // #include "stdafx.h" #include #include using namespace std; #include "Timer\Timer.h" int _tmain(int argc, _TCHAR* argv[]) { Timer timer; //timer.start(); // 슬립으로 준비와 수행 왔다갔다하기 //while(10>timer.elapsedSeconds()); //cout