Beanshell
文章平均质量分 78
flashtree
这个作者很懒,什么都没留下…
展开
-
Beanshell翻译12
1.Files and Directories 文件和目录 The following commands work with files, directories, and the working directory: 下面的命令和文件,目录,工作目录一起工作: cd(), pwd(), dir(), rm(), mv(), cat() Unix Style file commands. Uni翻译 2008-09-02 20:21:00 · 684 阅读 · 0 评论 -
Beanshell翻译6
1.Document Friendly Entities 友好的文档 BeanShell supports special overloaded text forms of all common operators to make it easier to embed BeanShell scrīpts inside other kinds of documents (e.g XML). Bea翻译 2008-09-02 20:33:00 · 833 阅读 · 0 评论 -
Beanshell翻译11
1.Undefined Variables 没有定义的变量You can test to see if a variable is defined using the special value void. For example: 你可以看一下,当一个变量用特殊的值void来进行定义的时候,例如:if ( foobar == void ) // undefined 没有定义You can ret翻译 2008-09-02 20:25:00 · 589 阅读 · 0 评论 -
Beanshell翻译2
Introduction 介绍 This document is about BeanShell. BeanShell is a small, free, embeddable Java source interpreter with object scrīpting language features, written in Java. BeanShell executes standard翻译 2008-09-02 20:36:00 · 858 阅读 · 0 评论 -
Beanshell翻译1
1.bsh.Interpreter: 说明:The BeanShell scrīpt interpreter. An instance of Interpreter can be used to source scrīpts and evaluate statements or expressions. Beanshell脚本解释者。一个解释的实例可以用作发起脚本或者计算申明或者表达式。 Her翻译 2008-09-02 20:37:00 · 1094 阅读 · 2 评论 -
Beanshell翻译4
1.Basic Syntax 基本语法 BeanShell is, foremost, a Java interpreter. So you probably already know most of what you need to start scrīpting with BeanShell. This section describes specifically what portion翻译 2008-09-02 20:35:00 · 765 阅读 · 0 评论 -
Beanshell翻译5
1.In BeanShell you may access JavaBean properties as if they were fields: 在Beanshell中你可以访问JavaBean中的属性: button = new java.awt.Button(); button.label = "my button"; // Equivalent to等价于: b.setLabel("my翻译 2008-09-02 20:34:00 · 836 阅读 · 0 评论 -
Beanshell翻译7
1.The this reference this引用 As in most languages, an executing method in BeanShell has its own "local" scope that holds argument (parameter) variables and locally declared variables. For example,翻译 2008-09-02 20:29:00 · 672 阅读 · 0 评论 -
Beanshell翻译8
1.scrīpting Interfaces 脚本接口 One of the most powerful features of BeanShell is the ability to scrīpt Java interfaces. This feature allows you to write scrīpts that serve as event handlers, listeners,翻译 2008-09-02 20:29:00 · 621 阅读 · 0 评论 -
Beanshell翻译9
1.Interface Types and Casting 接口和类型转换 It is legal, but not usually necessary to perform an explicit cast of a BeanShell scrīpted object to an interface type. For example: 这是合法的,但是通常不需要,将Beanshell脚本对象翻译 2008-09-02 20:27:00 · 673 阅读 · 0 评论 -
Beanshell翻译10
1.Special Variables and Values 特殊的变量和值In addition to the scope modifiers: this, super, global, BeanShell supports a number of pre.defined system variables, "magic" values, and methods. 为了增加作用域的使翻译 2008-09-02 20:26:00 · 719 阅读 · 0 评论 -
Beanshell翻译3
1.Quick Start 快速开始 Welcome to BeanShell. This is a crash course to get you going. Well leave out many important options and details. Please see the rest of the users guide for more information. 欢迎来翻译 2008-09-02 20:35:00 · 759 阅读 · 0 评论