|
5仿真币
课程设计遇到问题,希望大家能解答,谢谢
" [ Q. m; k1 |6 r5 r9 n6 ]
7 z9 P1 y) O* s2 k题目是:假设有两个不同的东西small和large经过同一个singleProc,如何设置他们的pricess time不同?
! @- C0 `+ [- x: E& _我的method是这样写的,但老是出错!1 Z% M% W& a5 b/ k2 Y* c
is4 [# B- q0 p1 V1 _ S& K% f9 S' ^& P
do
5 A3 M$ S7 j7 M! c7 [4 e if @.name = "small" then
! x+ n) `4 b g9 H5 }- ^ singleProc.proctime :=1*60; 1 H1 F( f& i6 J9 X/ _
@.move(drain);' y: V+ n" T+ P$ {
else. T1 L* R, P! ?& y$ g3 x* T
singleProc.proctime :=10*60; / i! o: ^; E; M, c: p A
@.move(drain);
" l! |8 E% H$ a end;, y- V0 Z |! u( `3 o \' x
end; |
最佳答案
查看完整内容
你的问题在于没有真正了解proctime修改的是什么。
你的问题应该是当物件过来的时候根据entity类别修改proctime,而按照你的程序,你是在singleproc的exit的位置修改的proctime,这是不合理的,这个method至少应该放在singleproc的entry前。
提示(自己试一下比较好):
如果你的method是在singleproc的entry触发会有问题,因为触发method的entity的proctime是不会被修改的,warning:Warning in method '.Models.Frame4.Method' in ...
|