微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

收集的Perl Debug方法

Perl Debug

The concepts of the perl debug are familiar to most programmers. Trace,breakpoint,and conditional breakpoint (watchpoint) are effective means with which to find problems in your perl script.

Common errors in perl

Check for these common errors before you try to debug a program:

  • no semi-colon at end of line.
  • matching pairs of delimiters: ( ),{ },[ ].
  • Using = when you mean ==.
  • Using == when you mean eq.
  • Using == when you mean =~.
  • disagreement of field,array or hash names (remember $data,$data[1],$data{1} and $Data are four different entities.
  • disagreement of subroutine names between execution and deFinition.
  • Incorrect use of if,elsif,else.
  • Not checking your program (and correcting the errors) using the -w switch.

Using the -w switch

perl -w myprogram

Both this useful command and the output from this command are frequently overlooked by experienced programmers. I have,on more than one occasion,spent an hour or 2 looking for a problem when correcting the errors displayed on the -w switch would have corrected or led me to the correction of the problem in a couple of minutes.

The debug command

perl -d myprogram

Essentially the -d switch allows you to communicate with the perl executable,and allows the perl executable to communicate with you.

Stepping up to the plate

  • l - lists the next few lines
  • p [variable name] - lets you print the value of a variable to the command line
  • q - I quit.
  • r - returns from current subroutine
      If you have written your program as a few subroutines,this is handy for running through each and checking the return.
  • n - executes the next statement at this level
      Means you don't have to go through those boring subroutine calls. If you don't kNow what I just wrote,get into a program and try it a couple of times. You'll get the hang of it.
  • s - The step command
      Okay,this is the key for simple debugging. Crank up your program in the debugger and step through it. If its a small program,this and the r command can take care of most of your needs. By the way,once you enter the s command,just hit enter to repeat the command.

Breaking away

Breakpoints allow you to specify the next stopping point in a program. For example,lets say I kNow my problems at line 65,I might insert a breakpoint at line 60 and step through the final five lines of code before the problem. You just saved hitting the enter key 60 times.

b - Set a breakpoint

Once you have started the perl debugger you may set a breakpoint at any executable line number.

b 20 - Sets a breakpoint at line 20.
b subroutinename - handy little deviation. If you kNow the subroutine name,this breaks on the first line inside the routine.
b 20 condition - depending on your background,this is called a conditional breakpoint or watchpoint. Perl breaks when the condition you specify is met.


    Examples
  • b 20 x>30 Breaks at line 20 when x is greater than 30
  • b 20 x=~/foo/i Breaks at line 20 when x contains "foo"

To start the program use c (continue),which runs the program to the first breakpoint or watchpoint.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐