|
|
5仿真币
课程设计遇到问题,希望大家能解答,谢谢
+ l3 X+ ~, G- X' P0 A6 b
+ @3 ^' [5 X) e6 Z: S1 o9 Z题目是:假设有两个不同的东西small和large经过同一个singleProc,如何设置他们的pricess time不同?
4 C8 ~* a) I" O/ f6 I b: M3 \! s我的method是这样写的,但老是出错!2 w: R: b; G' }$ }- R+ V
is$ T; {2 V ^$ C4 g
do
: X _6 _' j& b2 P: A2 I if @.name = "small" then
' w8 W) U, _( r. T/ _. r singleProc.proctime :=1*60; . U# I0 U/ V0 [2 c0 c7 P" W
@.move(drain);+ g$ m( i" y2 l6 G0 A4 K0 }8 N
else
+ P- Z- A. w' ]9 y singleProc.proctime :=10*60; 3 ]" l" E* }( ^, m& _
@.move(drain);( T. S9 \6 [+ j' E: \, d
end;
1 N( [0 t; U4 g* O1 h8 B& c% Mend; |
最佳答案
查看完整内容
你的问题在于没有真正了解proctime修改的是什么。
你的问题应该是当物件过来的时候根据entity类别修改proctime,而按照你的程序,你是在singleproc的exit的位置修改的proctime,这是不合理的,这个method至少应该放在singleproc的entry前。
提示(自己试一下比较好):
如果你的method是在singleproc的entry触发会有问题,因为触发method的entity的proctime是不会被修改的,warning:Warning in method '.Models.Frame4.Method' in ...
|