Control-Unusual Structures

来源:互联网 发布:阿里云服务器磁盘分区 编辑:程序博客网 时间:2024/05/01 18:10

Multiple Returns from a Routine
1. Use a return when it enhances readability.
2. Use guard clauses(early returns or exits) to simplify complex error processing.
3. Minimize the number of returns in each routine.

Recursion
1. Make sure the recursion stops.
2. Use safety counters to prevent infinite recursion.
3. Limit recursion to one routine.
4. Keep an eye on the stack.
5. Don't use recursion for factorials or fibonacci numbers.

Some possible rewrite strategies for goto
1. Rewrite with nested if statements.
2. Rewrite with a status variable.
3. Rewrite with try-finally.

Guidelines for using gotos
1. Use gotos to emulate structred control constructs in languages that don't support them directly.
2. Don't use the goto when an equivalent built-in construct is avaiable.
3. measure the performance of any goto used to improve efficiency.
4. Limit yourself to one goto label per routine unless you're emulating structured constructs.
5. Limit yourselft to gotos that go forward, not backward, unless you're emulating structured constructs.
6. Make sure all goto labels are used.
7. Make sure a goto doesn't create unreachable code.