首先,打开文件夹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