CompilerTech

导航

2012年1月5日

The C++ 'const' Declaration: Why & How

摘要: The 'const' system is one of the really messy features of C++.It is simple in concept: variables declared with ‘const’ added become constants and cannot be altered by the program. However it is also used to bodge in a substitute for one of the missing features of C++ and there it gets horrid 阅读全文

posted @ 2012-01-05 13:36 compilerTech 阅读(280) 评论(0) 推荐(0) 编辑

状态机相关

摘要: 在实际的应用中,根据有限状态机是否使用输入信号,设计人员经常将其分为Moore型有限状态机和Mealy型有限状态机两种类型。1 Moore型有限状态机 其输出信号仅与当前状态有关,即可以把Moore型有限状态的输出看成是当前状态的函数。2 Mealy型有限状态机 其输出信号不仅与当前状态有关,而且还与所有的输入信号有关,即可以把Mealy型有限状态机的输出看成是当前状态和所有输入信号的函数。 Finite State Machine: 有限状态机(FSM)或有限状态自动机或简称状态机,是表示有限个状态以及在这些状态之间的转移和动作等行为的数学模型. 简单说明一下,可以这样理解,系统的行为如.. 阅读全文

posted @ 2012-01-05 10:29 compilerTech 阅读(373) 评论(0) 推荐(0) 编辑