抄録
デバッグ作業は,作業に従事する開発者ごとに効率に大きな違いが見られる.デバッグにおける開発者の行動から効率に影響を与えている要因を明らかにできれば,教育や支援に役立てることができる.そこで本研究では、デバッガを使用したデバッグ行動について分析し,上手な人と下手な人の間にどのような差異が存在するのか明らかにすることを目的とした.そのアプローチとして,多くのデバッガが実装しているブレークポイント機能に着目し,その使用履歴よりプログラマの特徴を分析した.150行程度のJavaプログラムを題材とした実験の結果,次のような知見が得られた.デバッグの下手な人は,連続した行にブレークポイントを設置する傾向がある.また上手い人には,ブレークポイントを用いた実行を頻繁に行う傾向がある.
Debugging performance greatly depends on the programmers' debugging skill. If factors concerning the debugging performance are extracted from programmers' actions, it would be useful for performance improvement. Our goal is to clarify debugging skills of effective use of debuggers. To achieve this goal, we conducted a pilot experiment to analyze programmers' actions in debugging a small Java program (about 150 source lines of code) using Eclipse. As a result of analysis of 6 subjects' debugging actions, we found that expert programmers used more breakpoints than novices. Also, we found that novices tend to set breakpoints one by one to adjacent lines.