|
5仿真币
课程设计遇到问题,希望大家能解答,谢谢/ a4 m$ y; o4 ~ Z, X9 X' J
; |9 B t* O$ R7 b题目是:假设有两个不同的东西small和large经过同一个singleProc,如何设置他们的pricess time不同?
' @9 C% H a9 C8 r我的method是这样写的,但老是出错!
- f6 }: H0 e a& {0 Lis
. F1 J! W o' ], {& F5 jdo
( ^8 ?. [0 K( r& e" x1 j# O d if @.name = "small" then7 h; ~. w7 z& E7 E8 J) i' F4 ~
singleProc.proctime :=1*60;
5 j: Q9 Y+ x( b2 q& G @.move(drain);3 h4 k, q8 i# W
else
; q$ \0 I. K7 g% }8 n0 C2 h m8 T singleProc.proctime :=10*60;
k( P1 d) ~5 z9 w% b- u @.move(drain);
# i: d7 L1 |! a end;
' d) t1 Z V" Send; |
最佳答案
查看完整内容
你的问题在于没有真正了解proctime修改的是什么。
你的问题应该是当物件过来的时候根据entity类别修改proctime,而按照你的程序,你是在singleproc的exit的位置修改的proctime,这是不合理的,这个method至少应该放在singleproc的entry前。
提示(自己试一下比较好):
如果你的method是在singleproc的entry触发会有问题,因为触发method的entity的proctime是不会被修改的,warning:Warning in method '.Models.Frame4.Method' in ...
|