具執行時期追蹤功能JavaVirtualMachine之實作

碩士 === 國立臺灣大學 === 資訊工程學研究所 === 87 === Java Virtual Machine is the kernel of Java programming language. A Java application is running on the top of Java Virtual Machine. Java Virtual Machine is not only the engine which really executes the Java application,but is also the key to many chara...

Full description

Bibliographic Details
Main Author: 呂文泉
Other Authors: 李肇林
Format: Others
Language:zh-TW
Published: 1999
Online Access:http://ndltd.ncl.edu.tw/handle/61021931491323569970
Description
Summary:碩士 === 國立臺灣大學 === 資訊工程學研究所 === 87 === Java Virtual Machine is the kernel of Java programming language. A Java application is running on the top of Java Virtual Machine. Java Virtual Machine is not only the engine which really executes the Java application,but is also the key to many characteristics of Java language. Besides,based on Java Virtual Machine we can build new tools to solve many Java programming problems of Java. The architecture of Java is very open,once we learn the basic rules of Java Virtual Machine,it is not difficult to add some extensions to Java programming. The aim of the thesis is to develop a Java Virtual Machine capable of tracing the Bytecode during the execution of a Java application. The kernel of the program is a Java Runtime Environment. The main function is to trace a Java application,and to provide a tracer in the level of Java Bytecode. The tracer views program counter,local variables and stack. It alse provides user with a user interface which can view the definition of Java classes and edit breakpoints.