首先,打開文件夾PackageDemo,運行StudentInfo.jcw, 進入JCreator環境,要求按順序分別編譯(即運行菜單項“Builder”——“Compile File”)Student.java, CourseSession.java, RosterReporter.java, StudentInfo.java. 然后,運行菜單項“Builder”——“Execute File”,并代開文件夾PackageDemo——classes, 看該目錄下生成了哪些文件,并將這些文件全部刪除。 修改程序,使得運行后RosterReporter.class文件在\classes\sisi\report目錄下,Student.class,CourseSession.class,RosterReporter.class及StudentInfo.class文件存放在\classes\sis\studentinfo目錄下
標簽:
上傳時間: 2015-11-06
上傳用戶:VRMMO
This a simple bootloader for AT91SAM7{S,X}{64,128,256} processors. It permits you to download new code to the device over USB. This bootrom is installed at address 0x00000000 in the ARM, which means that it is the first piece of code to Execute after reset. At startup, it waits for a few seconds to see if the downloader is trying to connect. If not, then the bootloader gives up control and jumps to your program. If the downloader is trying to connect, then the bootloader receives the new program over USB and writes it into flash.
標簽: bootloader processors download permits
上傳時間: 2015-11-30
上傳用戶:shus521
UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C functions, but there are a few unique to the UnderC system which give you runtime access to the compiler. You may evaluate expressions, Execute commands, compile code, etc. * Expands the text in expr using the UnderC preprocessor, putting the result into buff. void uc_macro_subst(const char* expr, char* buff, int buffsize) * Executes a UC #-command, like #l or #help. uc_cmd() expects the name of the command, _without_ the hash, e.g. uc_cmd("l fred.cpp") or uc_cmd("help"). void uc_cmd(const char* cmd) * Evaluates any C++ expression or statement will return non-zero if unsuccessful.
標簽: implementation Extensions libraries standard
上傳時間: 2013-12-14
上傳用戶:leehom61
New users and old of optimization in MATLAB will find useful tips and tricks in this document, as well as examples one can use as templates for their own problems. Use this tool by editing the file optimtips.m, then Execute blocks of code in cell mode from the editor, or best, publish the file to HTML. Copy and paste also works of course. Some readers may find this tool valuable if only for the function pleas - a partitioned least squares solver based on lsqnonlin. This is a work in progress, as I fully expect to add new topics as I think of them or as suggestions are made. Suggestions for topics I ve missed are welcome, as are corrections of my probable numerous errors. The topics currently covered are listed below
標簽: optimization and document MATLAB
上傳時間: 2015-12-24
上傳用戶:佳期如夢
本程序要求先安裝jdk和jCreator 2、在jCreator建立一個叫做chat的工程 3、把本章目錄下的所有源文件加入到這個工程中 4、在build菜單下選擇complier project 5、在build菜單下選擇Execute project,程序就可以運行了 6、為了完成聊天,需要在另一臺機器上重復以上步驟,打開另一個聊天程序,該聊天程序的端口設置要和本機的相反
標簽: jCreator complier projec build
上傳時間: 2013-12-15
上傳用戶:gdgzhym
創建一個名為try.rar的文件,然后將作為目標文件的try.rar放在 第一步設置好的服務器的根目錄下,對應的本地物理路徑是安裝Tomcat的 文件夾下的ROOT目錄。然后在運行范例程序時,只要使用默認的 路徑就可以了。或者你也可以使用其他的路徑,甚至是真正的遠程 文件,但是需要參考相應的說明來設置。 4、在jCreator建立一個叫做MTdownload的工程 5、把本章目錄下的所有源文件加入到這個工程中 6、在build菜單下選擇complier project 7、在build菜單下選擇Execute project,程序就可以運行了
標簽: try
上傳時間: 2014-03-06
上傳用戶:huql11633
在jCreator建立一個叫做telnet的工程 3、把本章目錄下的所有源文件加入到這個工程中 4、在project菜單下選擇project setting,在JDK profile框中單擊當前的JDK, 然后選擇Edit,在彈出的對話框中選add,然后選add package,將本章源代碼目 錄下的ipworks.jar包加入。 5、在build菜單下選擇complier project 6、在build菜單下選擇Execute,程序就可以運行了
標簽: project jCreator setting telnet
上傳時間: 2015-12-27
上傳用戶:阿四AIR
排隊的MMS模型, how could someone run (Execute) your program and if it could be used for the M/M/1 model
上傳時間: 2014-01-20
上傳用戶:mikesering
var matlab:variant //通過"變體"調用接口是比較低效的,但很方便 begin //變體這種結構,本是vb中的東西。 try //如果已有活動的matlab.application對象,取其接口 matlab:=GetActiveOleObject( Matlab.Application ) except //這些個api所使用到的參數,其實都可以在注冊表里搜索到. matlab:=CreateOleObject( Matlab.Application ) //否則自己創建之 matlab:=CreateOleObject( Matlab.Application.5 ) matlab.Execute( a=[1 1/ 3 1/5] ) //matlab.application接口具有 matlab.Execute( b=[3 1 1/3] ) //這種方法(接口),否則會出錯 matlab.Execute( plot(a,b) );
上傳時間: 2013-12-18
上傳用戶:dapangxie
看n2實例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms
標簽: simulator Simulator different Create
上傳時間: 2016-07-02
上傳用戶:wfl_yy