상태 모드 인 스 턴 스
5270 단어 디자인 모드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public abstract class State
{
public abstract void WriteProgram(Work w);
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public class Work
{
private State current;
public Work()
{
current = new ForenonState();
}
private double hour;
public double Hour
{
get
{
return hour;
}
set
{
hour = value;
}
}
private bool finish = false;
public bool TaskFinished
{
get
{ return finish; }
set
{ finish = value; }
}
public void setState(State s)
{
current = s;
}
public void WriteProgram()
{
current.WriteProgram(this);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public class ForenonState:State
{public override void WriteProgram(Work w)
{
if(w.Hour<12)
{
Console.WriteLine(" :{0} ", w.Hour);
}
else
{ w.setState(new NoonState());
w.WriteProgram();
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public class NoonState:State
{
public override void WriteProgram(Work w)
{
if(w.Hour<13)
{
Console.WriteLine(" {0} ", w.Hour);
}
else
{ w.setState(new AfteroonState());
w.WriteProgram();
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
class AfteroonState:State
{
public override void WriteProgram(Work w)
{
if(w.Hour<17)
{
Console.WriteLine(" {0} ",w.Hour);
}
else
{w.setState(new eveningState());
w.WriteProgram();
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public class eveningState:State
{public override void WriteProgram(Work w)
{
if(w.TaskFinished)
{
w.setState(new RestState());
w.WriteProgram();
}
else
{
if (w.Hour < 21)
Console.WriteLine(" {0} ", w.Hour);
else
{ w.setState(new Sleeping());
w.WriteProgram();
}
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
public class RestState:State
{
public override void WriteProgram(Work w)
{
Console.WriteLine(" {0} ", w.Hour);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
class Sleeping:State
{
public override void WriteProgram(Work w)
{
Console.WriteLine(" {0} ", w.Hour);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zhuangtai
{
class Program
{
static void Main(string[] args)
{
Work ep = new Work();
ep.Hour=9;
ep.WriteProgram();
ep.Hour = 10;
ep.WriteProgram();
ep.Hour = 11;
ep.WriteProgram();
ep.Hour=12;
ep.WriteProgram();
ep.Hour=13;
ep.WriteProgram();
ep.Hour=14;
ep.WriteProgram();
ep.Hour=15;
ep.WriteProgram();
ep.Hour=16;
ep.WriteProgram();
ep.TaskFinished = false;
ep.Hour=17;
ep.WriteProgram();
ep.Hour=18;
ep.WriteProgram();
ep.Hour=19;
ep.WriteProgram();
ep.WriteProgram();
ep.Hour = 20;
ep.Hour = 21;
ep.WriteProgram();
ep.Hour = 22;
ep.WriteProgram();
ep.Hour = 23;
ep.WriteProgram();
ep.Hour = 24;
ep.WriteProgram();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
디자인 모델 의 공장 모델, 단일 모델자바 는 23 가지 디자인 모델 (프로 그래 밍 사상/프로 그래 밍 방식) 이 있 습 니 다. 공장 모드 하나의 공장 류 를 만들어 같은 인 터 페 이 스 를 실현 한 일부 종 류 를 인 스 턴 스 로 만 드 는 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.