parameterized

时间:2024-05-09 17:42:09编辑:优化君

工程英语高人翻译几句话

1. Design Principle
This project’s design process should be implemented on the basis of practicality, economy, aestheticism and safety. Under the premise of meeting the production process, life and health requirements, a modern industrial environment is pursued according to the project’s local climate conditions, general layout plans, appearance and internal organic shape, so that the building has well-ventilated lighting, reasonable functions and smooth flow of traffic, with simple design and beautiful, coordinated colours.
2. Column Network Layout
Related functions will be as centralized as possible, to achieve a compact and appropriate layout and reasonable span plant and Zhuju axis positioning ...
3. Elevation Design
The elevation note on the ground surface is the building elevation on completion, and the note on floor surface denotes the structure elevation on completion. ± 0.000 equivalent to the absolute elevation is mapped on the general building design. Sintering and cooling room has an elevation difference of 500 between indoor and outdoor and the rest are 300.
4. Envelope
Insulating walls must be considered in thawing rooms to ensure constant temperature.
7. Building, the ground
All of the building structure in this project is designed to build adequate space for repair maintenance and safety exit. The plant design also takes into account of the equipment maintenance, including equipment location and stacking load.

8. Architectural style, colour and decoration
All inside and outside walls in this project (other than the sandwich steel plate) have to be painted. Office ceiling is gypsum board; and the bathroom ceiling is made of aluminium.
The entire plant’s colour tune is blue and white based, the buildings in the entire factory has reasonable colour, clear area. All types of pipe used can be quickly and effectively identified and we strive to build a beautiful and elegant environment for the factory.
9. Construction Equipment
The low cross section in sintering and cool room is set up to be roof ventilator, with throat size of 3600.


计算机英文翻译?(英语高手请进)2.3-3.2

2.3 Porflet容器
一个portlet容器运行portlet并提供给它们要求的运行时间环境。portlet 容器管理portlet的生命周期和为portlet的参数选择提供持久的储存机制 。portlet容器从门户接收要求来执行主portlet上的要求。Portlet容器并不负责合计由portlet产生的内容,因为合计工作由门户自身完成。
图表4显示从客户请求端接收门户申请,获得当前用户的页面数据和发出调用到portlet容器的总体的门户体系。“Portlet容器调用此后的portlet请求从每一个portlet来的标记碎片”。
Portlet被打包到可以被不同卖主提供的portlet应用中(应用例子1和2) 一个portlet应用中的portlet可以通过会议来分享设定和数据。
3程序模式
这部分包括portlet的基本程序模式,如生命周期,请求进程和数据模式。
3.1 Portlet实体
Portlet实体是一种带有附加设定的参数化portlet的Java例子。这种模式叫做flyweight模式(看[2])。参数化过程用portlet参数选择来完成。Portlet参数选择是回归状态的信息,可以被定制。最初的设定在portlet调度描述符中被定义。门户管理员可以为基础portlet实体修改这些设定(例如一个服务器地址,portlet可以找回它的新闻)。从这个基础portlet实体中,新的实体可以为每一个把这个portlet放到他或她的页面的用户所创造。用户接着可以定制portlet参数选择(例如设定最喜欢的储存引用)。然而,如何建立和配置portlet实体层次的进一步细节没有在portlet说明书的第一次版本中详细说明,但需要在未来说明书发行中加以注意。
3.2 Portlet 窗口
由portlet产生的标记碎片在portlet窗口中显示。(也可以看图2)附在portlet窗口的是portlet模式,窗口陈述和表现参数。从portlet实体来的portlet窗口退耦(装置)在上一个部分解释过了并允许不同的窗口指向相同的portlet实体。这些相同portlet实体的窗口可以在不同的窗口陈述或portlet模式中。下面的部分更详细的解释概念,portlet模式和窗口陈述。


人工翻译的。The portlet container calls then the portlets requesting the markup fragment from each portlet.这一句看不懂什么意思,文中加引号的部分。其他的都基本翻译出来了。此外,网络上都没有提及portlet正式的中文名称,我就直接用portlet了。


参数化查询的SQL 指令撰写方法

在撰写 SQL 指令时,利用参数来代表需要填入的数值,例如: Microsoft SQL Server 的参数格式是以 @ 字符加上参数名称而成,SQL Server 亦支持匿名参数 ?。SELECT * FROM myTable WHERE myID = @myIDINSERT INTO myTable (c1, c2, c3, c4) VALUES (@c1, @c2, @c3, @c4) Microsoft Access 不支持具名参数,只支持匿名参数 ?。UPDATE myTable SET c1 = ?, c2 = ?, c3 = ? WHERE c4 = ? MySQL 的参数格式是以 ? 字符加上参数名称而成。UPDATE myTable SET c1 = ?c1, c2 = ?c2, c3 = ?c3 WHERE c4 = ?c4 SqlCommand sqlcmd = new SqlCommand(INSERT INTO myTable (c1, c2, c3, c4) VALUES (@c1, @c2, @c3, @c4), sqlconn);sqlcmd.Parameters.AddWithValue(@c1, 1); // 设定参数 @c1 的值。sqlcmd.Parameters.AddWithValue(@c2, 2); // 设定参数 @c2 的值。sqlcmd.Parameters.AddWithValue(@c3, 3); // 设定参数 @c3 的值。sqlcmd.Parameters.AddWithValue(@c4, 4); // 设定参数 @c4 的值。sqlconn.Open();sqlcmd.ExecuteNonQuery();sqlconn.Close(); $query = sprintf(SELECT * FROM Users where UserName='%s' and Password='%s',mysql_real_escape_string($Username),mysql_real_escape_string($Password));mysql_query($query);或是$db = new mysqli(localhost, user, pass, database);$stmt = $mysqli -> prepare(SELECT priv FROM testUsers WHERE username=? AND password=?);$stmt -> bind_param(ss, $user, $pass);$stmt -> execute(); PreparedStatement prep = conn.prepareStatement(SELECT * FROM USERS WHERE USERNAME=? AND PASSWORD=?);prep.setString(1, username);prep.setString(2, password); SELECT *FROM COMMENTSWHERE COMMENT_ID =

eclipse的单元测试为什么不能有返回值和形参?

那表示你应该把“返回参数的方法A“和”A后面验证方法A返回值的方法B“的执行过程封闭成一个 test 方法。

一个 test case 是指”验证某个case是否正常“。复杂的多种情况应该分割成几个独立的 case 来测试。确保每个 case 都是原子性的 (Atomic)。如果你打算让一个 Case 中还讲究 if-else 来分别处理几种业务情况就表示你没理解单元测试的意思,你那样测试的不是”单元“而是”过程“。

而每个 JUnit test 方法应该是无状态的,无状态就是说,我们以任何次序和次数去调用某个方法,它给出的结果在参数相同的情况下结果应该完全相同,如果我们在测试过程中记住了某个”状态“变量再去按不同的次序调用几个方法时这几个方法可能分别影响了那个”状态“变量的值,这就导致调用的次序和次数的不同组合得到的结果不相同。比如 testA(), testB(), test(),我们以任何次序和次数的组合去调用这几个方法,对每个方法来说在参数相同时结果就应该相同,如果它们之间共享了”状态“就是错误的 Test Case 设计,因为我们这样是在测试”过程“而不是过程中的某个”单元“。这样一来对于以后经常改动代码的情况下我们只需要改完后再重新跑所有的 JUnit Test Case 来验证这次改动没有影响其它的功能。如果做不到这点就不是一个合格的 JUnit Test Case。


如何使用junit4进行参数化测试

Step 1: 写出基本的算术代码Calculate.javapackage com.ysc.main;public class Calculate { public static int add(int a, int b) { return a + b; } public static int minus(int a, int b) { return a - b; } public static int divide(int a, int b) throws Exception { if (b == 0) { throw new Exception("除数不能为0"); } return a / b; } public static int multiply(int a, int b) { return a * b; }}Step 2: 对Calculate类添加Junit4的测试单元,右键->new->JUnit Test Case,如下图Step 3: 对添加的测试用例进行配置,命名为TestCalculate,点击NextStep 4: 选择需要测试的函数,点击Finish,完成JUnit的基本配置Step 5: 在经过上面的步骤之后,就可以得到配置好的测试用例package com.ysc.main;import static org.junit.Assert.*;import org.junit.Before;import org.junit.BeforeClass;import org.junit.Test;public class CalculateTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @Before public void setUp() throws Exception { } @Test public void testAdd() { fail("Not yet implemented"); } @Test public void testMinus() { fail("Not yet implemented"); } @Test public void testDivide() { fail("Not yet implemented"); } @Test public void testMultiply() { fail("Not yet implemented"); }}Step 6: 现在需要做的就是添加上需要测试的数据package com.ysc.main;import static org.junit.Assert.*;import org.junit.Before;import org.junit.BeforeClass;import org.junit.Test;public class CalculateTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @Before public void setUp() throws Exception { } @Test public void testAdd() { assertEquals(5, Calculate.add(1, 4)); } @Test public void testMinus() { assertEquals(-1, Calculate.minus(2, 3)); } @Test public void testDivide() throws Exception { assertEquals(0, Calculate.divide(1, 4)); } @Test public void testMultiply() { assertEquals(4, Calculate.multiply(1, 4)); }}Step 7: 开始进行测试,右键->Run as->JUnit Test

C# 多线程,ThreadStart()里面的方法带了参数就提示错误?

线程操作主要用到Thread类,他是定义在System.Threading.dll下。使用时需要添加这一个引用。该类提供给我们四个重载的构造函数(以下引自msdn)。

Thread (ParameterizedThreadStart) 初始化 Thread 类的新实例,指定允许对象在线程启动时传递给线程的委托。
Thread (ThreadStart) 初始化 Thread 类的新实例。
由 .NET Compact Framework 支持。

Thread (ParameterizedThreadStart, Int32) 初始化 Thread 类的新实例,指定允许对象在线程启动时传递给线程的委托,并指定线程的最大堆栈大小。
Thread (ThreadStart, Int32) 初始化 Thread 类的新实例,指定线程的最大堆栈大小。
由 .NET Compact Framework 支持。



我们如果定义不带参数的线程,可以用ThreadStart,带一个参数的用ParameterizedThreadStart。带多个参数的用另外的方法,下面逐一讲述。

一、不带参数的

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

namespace AAAAAA
{
class AAA
{
public static void Main()
{
Thread t = new Thread(new ThreadStart(A));
t.Start();

Console.Read();
}

private static void A()
{
Console.WriteLine("Method A!");
}
}
}


结果显示Method A!

二、带一个参数的

由于ParameterizedThreadStart要求参数类型必须为object,所以定义的方法B形参类型必须为object。

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

namespace AAAAAA
{
class AAA
{
public static void Main()
{
Thread t = new Thread(new ParameterizedThreadStart(B));
t.Start("B");

Console.Read();
}

private static void B(object obj)
{
Console.WriteLine("Method {0}!",obj.ToString ());

}
}
}


结果显示Method B!

三、带多个参数的

由于Thread默认只提供了这两种构造函数,如果需要传递多个参数,我们可以自己将参数作为类的属性。定义类的对象时候实例化这个属性,然后进行操作。

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

namespace AAAAAA
{
class AAA
{
public static void Main()
{
My m = new My();
m.x = 2;
m.y = 3;

Thread t = new Thread(new ThreadStart(m.C));
t.Start();

Console.Read();
}
}

class My
{
public int x, y;

public void C()
{
Console.WriteLine("x={0},y={1}", this.x, this.y);
}
}
}


结果显示x=2,y=3

四、利用结构体给参数传值。

定义公用的public struct,里面可以定义自己需要的参数,然后在需要添加线程的时候,可以定义结构体的实例。

//结构体
struct RowCol
{
public int row;
public int col;
};

//定义方法
public void Output(Object rc)
{
RowCol rowCol = (RowCol)rc;
for (int i = 0; i < rowCol.row; i++)
{
for (int j = 0; j < rowCol.col; j++)
Console.Write("{0} ", _char);
Console.Write("\n");
}
}


parameters这词什么意思?

parameter
[pE5rAmitE]
n.
参数, 参量, 起限定作用的因素

parameter
pa.ram.e.ter
AHD:[p…-r²m“¹-t…r]
D.J.[p*6r#mit*]
K.K.[p*6r#m!t+]
n.(名词)
Mathematics
【数学】
A constant in an equation that varies in other equations of the same general form, especially such a constant in the equation of a curve or surface that can be varied to represent a family of curves or surfaces.
参数,参量:在相同一般类型的等式中取值变化的等式中的常数或常量,尤其是曲线方程和平面方程中能代表一类曲线或平面的常量
One of a set of independent variables that express the coordinates of a point.
变量,参数:一组代表与之对应的点的独立变量之一
One of a set of measurable factors, such as temperature and pressure, that define a system and determine its behavior and are varied in an experiment.
要素,测量元素之一:一组可测量的确定某一系统并决定该系统的状况且在实验中是变化的因素之一,例如温度和压力
Usage Problem A factor that restricts what is possible or what results:
【用法疑难】 限制因素:限定可能性和结果的因素:
“all the parameters of shelter—where people will live, what mode of housing they will choose, and how they will pay for it”(New York)
“住宿的所有限制因素——人们住在哪里、他们将选择什么样的住房式样以及他们如何付房钱”(纽约)
A factor that determines a range of variations; a boundary:
决定变数范围的要素,范围,界限:决定变化范围的因素;限度:
an experimental school that keeps expanding the parameters of its curriculum.
一所不断扩展课程范围的实验学校
Statistics A quantity, such as a mean, that is calculated from data and describes a population.
【统计学】 母数:一种如平均数等从数据中计算出来的用来描述总体的数值
Usage Problem A distinguishing characteristic or feature.
【用法疑难】 特色,特征:区别于其它事物的特点或性质

New Latin parametrum [a line through the focus and parallel to the directrix of a conic]
现代拉丁语 parametrum [通过焦点并与圆锥曲线的准轴线平行的直线]
Greek para- [beside] * see para- 1
希腊语 para- [在旁边] *参见 para-1
Greek metron [measure] * see -meter
希腊语 metron [测量] *参见 -meter

par”amet“ric
AHD:[p²r”…-mµt“r¹k] 或 par”a.met“ri.cal (形容词)
par”amet“rically
adv.(副词)

In recent years parameter has become the archetype for the borrowing of scientific terms into general usage and as such has occasioned a good deal of skeptical comment. Some of its new uses can be justified as useful extensions of the technical senses of the word. For example, the provisions of a zoning ordinance that limit the height or density of new construction can be reasonably likened to mathematical parameters that establish the limits of other variables. Therefore one can properly say The zoning commission announced new planning parameters for the historic Lamping district of the city. But other uses suggest that the writer has not understood the technical sense and has chosen it primarily as a way of injecting an aura of scientific precision into what would otherwise be a pedestrian communication. Thus there is no semantic justification for using parameter as a general substitute for characteristic, as in The Judeo-Christian ethic is one of the important parameters of Western culture, an example found unacceptable by 80 percent of the Usage Panel. · Some of the difficulties with nontechnical use of parameter appear to arise from its resemblance to the word perimeter, with which it shares the sense “limit,” though the two words differ in their precise meaning. This confusion doubtless explains the use of parameter in a sentence such as U.S. forces report that the parameters of the mine area in the Gulf are fairly well established, where the word perimeter would have expressed the intended sense more exactly. This example of a use of parameter was unacceptable to 61 percent of the Usage Panel.
近些年来,parameter 已成为一个从科技术语借用到普通用法的原形, 同时也引起了大量的怀疑批评。它的某些新用法可被看作是该词科技含义的有益扩展。例如,某一区域性法规中关于新建筑高度或密度的条文能被合理地与制定其它变量限度的数学参量进行比较。因而,人们当然可以说地区委员会公布了历史上该城有名的灯区新计划方案 。 但其它的一些用法说明说话人还没有理解它的科技含义,并且选用了这个词主要作为给将是普通交流的东西注入一些精确的科学气息的途径。因此,用parameter 作为 characteristic 的一般等价词毫无语义上的合理性, 如在犹太教与基督教的道德规范是西方文化中重要的限制因素 , 是80%的用法小组成员不接受的例子。Parameter 的非科技运用中的一些难点是由于它与 perimeter 都有“限制”的含义造成的, 尽管两个词的确切含义是不相同的。这种混淆无疑解释了parameter 在例如 美军报告说,海湾地雷区的环形防线设置得相当不错 的句子中的运用, 这里perimeter 可能会更确切地表达这种引申含义。 61%的用法小组成员不接受这个运用parameter 的例子

parameter
[pE5rAmItE(r)]
n.
参数

parameter
[pE5rAmitE]
n.
【数】参数[量, 项, 词]; 变数, 特性; 补助变数
(结晶体的)标轴; 半晶轴
(根据基底时间, 劳动力, 工具, 管理等)工业生产预测法
[废]【天】通径

parameter-transformation
n.
参数变换
parameterized
adj.
参数化的

acceleration parameter
加速参数
action parameter
行动参数
activation parameter
活化参量[参数]
actual parameter
实在参数
address parameter
地址参数
adjustable parameter
可调参量[参数]
admissible parameter
容许参数
admittance parameter
导纳参数
affine parameter
仿射参数
air parameter
空气(环境)参数
analytic parameter
解析参数[参变量]
antenna parameter
天线参数
arbitrary parameter
任意参数
assembly parameter
汇编参数
asymmetry parameter
非对称参数
atomic parameter
原子参量
autonomous parameter
自发参数
auxiliary inductive parameter (AIP)
辅助诱导参数
basic system parameter
基本系统参数
bioassay parameter
生物测定参数
biochemical parameter
生化参数
biological parameter
生物参数
bunching parameter
群聚参数
buoyancy parameter
浮力参数
canonical parameter
典范参数
characteristic parameter
特性参数
characteristic viscoelastic parameter
粘弹性特征参数
charge control parameter
电荷控制参数
chromatographic parameter
色谱参数
circuit parameters
电路参数
coding parameter
编码参数
cohesive energy density parameter
内聚能密度参数
collision parameter
碰撞参数
colorimetric parameter
色度参数
commutating parameter
换向[整流]参数
complex parameter
复参数
compressibility parameter
可压缩性参数
conduction parameter
传导参数
conformal parameters
保形参数
conjugate parameters
共轭参数[参量], 共轭参变量
conjugate distance parameter
共轭距离参量
constant parameter
恒定参数
continuous parameter
连续参数
control(ling) parameter
调节[控制]参数
controlled parameter
受控参数
copolymerization parameter
共聚参数
correlation parameter
相关参数
cost parameter
价值指标
cost parameters
成本参数
coupling parameter
耦合参数
critical parameter
临界参数
critical parameter of flow
临界流动参数
damage parameter
破坏参数
damping parameter
阻尼[衰减]参数
decoupling parameter
去耦(合)参数
deformation parameter
畸变参量, 形变参数
demand parameter
需求指标
demographic parameter
人口参数
design parameter
设计参数
device parameter
(晶体管)器件参数
differential parameter
微分参数
digit layout parameter
数位配置参数
dimensionless parameter
无维参数, 无因次[无量纲]参数
direction parameter
方向 参数
discrete time parameter
离散时间参数
discriminant parameter
判别参数
dispersion parameter
【冶】分散度参数
distribution parameter
分布参数
drag parameter
阻力参数
dynamic parameter
动态参数
effective aspect ratio parameter
有效伸长率, 有效展弦比参数
effective dispersion parameter
有效扩散[分散]参数
electric(al) parameter
电参数
electrical parameters of a television system
电视系统的电参数
electrical operating parameter
电操作参数
electronic parameter
电子参量
engine parameter
发动机参数
environmental parameter
环境参数
epistatic parameter
上位参量
equivalent parameters
等效[等价]参数
essential parameter
基本[本质]参数
exposure parameter
暴露[曝光, 接触]参数
extensive parameter
广延参量
external program parameter
外部程序参数
family parameter
族的参数
first differential parameter
第一微分参数
fission parameter
裂变参量
fissionability parameter
可裂变性[度]参数
flow parameter
气流参数
formal parameter
形式参数
four-pole parameter
四极参数
frequency parameter
倍频参数
functional parameter
功能参数
fundamental performance parameter
基本性能参数
fusion parameter
熔解参数
gain parameter
增益参数
general circuit parameter
一般电路参数
geodesic parameter
测地参数
geometric parameter
几何参数
gravity parameter
重力参数
growth parameters
生长参数
hinge-moment parameter
铰接力矩参数
hybrid parameter
杂系[混合]参数
image parameter
图象[镜象]参数
impact parameter
碰撞参数
implicit parameter
隐参数
incrementation parameter
增量参数
inertial parameter
惯性参数
initial parameters
最初参数
input parameter
输 入参数
intensive parameter
强度参数
interception parameter
拦截参数(集尘)
isoclinic parameter
等斜参数
isolation parameters
隔离参数
isothermal parameters
等温参数
items parameters
项目的参数
kinetic parameter
动力参数
lattice parameter
晶格[点阵]参数
level parameter
能级[校平]参数
lift-curve-slope parameter
升力曲线斜牵参数
line parameters
线路参数
linear electrical parameters
线性电参数
linkage parameter
杆系参数
local canonical parameter
局部典范参数
location parameter
定位[测定]参数
long-range order parameter
长程序参数
loop parameter
循环参数
low-frequency impedance parameter
低频阻抗参数
lumped parameter
集总参量
main parameter
主要参数
major parameter
主要参数
Malthusian parameter
马尔萨斯参数
manufacturing parameter
生产[工艺制造]参数
mass parameter
质量参数
mean parameter
平均参数
mesh parameter
网格参数
meteorological parameter
气象参数
minor parameter
次要参数
misfit parameter
错配参数
mismatch parameter
失配参数
mixed differential parameter
混合微分参数
monitoring parameter
监测参数
natural parameter
特性[自然]参数
navigational parameter
导航参数
nephelauxetic parameter
电子云重排参数
non-dimensional parameter
无量纲[无因次]参数
non-ideality parameter
非理想性参数
nonlinear parameter
非线性参数
normalized parameter
归一化参量
normalizing parameter
标准化参数
nuclear parameters
核参数
nuisance parameters
多余参量
offset parameter
补偿参数
open circuit parameter
开路参数
open-wire parameter
明线参数
operation parameter
使用参数
optical parameter
光参数
optimal parameter
最佳指标[参数]
optimum relaxation parameter
最优松弛因子
order parameter
有序参数
output parameter
输出参数
parasitic parameter
寄生参数
performance parameter
性能参数
physico-chemical parameter
物化参数
pneumatic parameter
气压参数
policy parameter
政策参数
population parameter
总数, 全量, 全参数, 总量, 人口参数
portfolios parameters
资产组成参数
position parameter
位(置)参量
preset parameter
预定[固定]参数
probabilistic parameter
或然性参数
procedure parameter
过程参数
program parameter
程序参数
program-generated parameter
程序生成参数
quantitative parameter
定量参数
random parameter
随机参数
real parameter
实参数
reduced parameters
折合[简约]参数
regular parameter
正则参数
relative parameter
相对参数
retention parameter
保留参数
retry parameter
重试[复算]参数
rheological parameter
流变参数
roughness parameter
起伏[粗略]参数
running parameter
工作[变化]参数
saturation parameter
饱和参量
scalar parameter
标量参数
scale parameter
尺度参数
scattering parameter
散射参数
selection parameter
选择参数
self-purification parameter
自净参数
semilumped parameter
半集中参数
separation parameter
分离参数
sequential parameters
序列参数
series-distributed parameter
串联分布参数
servo parameter
随动[跟踪, 伺服]系统参数
shape parameter
形状参量[系数, 参数]; 谱轮廓参量
short-range order parameter
短程序参数
similarity parameters
相似参数
slmple formal parameter
简单形式参数
solubility parameter
溶解参数
solvent parameter
溶剂参数
source parameters
离子源参数
space charge parameter
空间电荷参量
spacing parameter
间距参数
spreading parameter
扩展[散射]参数
stability parameter
稳定性参数
stagnation parameters
滞止参数
state parameter
态参量
static parameter
静态参数
statistical parameter
统计参数
steadiness parameter
稳定参数
steam parameter
蒸汽参数
straggling parameter
离散[偏差, 误差]参数
stray parameter
杂散[补充]参数; 随机变量; 寄生参数
string parameter
串参数
structural parameter
结构参数
superfluous parameter
多余参数
symmetric parameter
对称参数
system parameter
系统参数
technical parameter
技术参数
technological parameter
工艺参数
telemetry parameter
遥测参数
television transmission parameters
电视(信号)传输参数
terminal parameter
终端参数
thermal sensitive parameter
热敏参数
thermal shock parameter
热震参数
time-bias parameter
时间偏向参数
time-varying parameters
时变参数
transformation parameter
变换参数
transistor parameter
晶体管参数
transmission-line parameters
传输线参数
tube parameter
电子管参数
two-phase flow parameter
二相流参数
uniformizing parameter
单值化参数
unknown parameter
未知参数
value parameter
值参数
valve parameter
电子管参数
variable parameter
可变参量
varying parameter
可变参数
video parameter
视频[电视](信号)参数
wastewater parameter
废水(治理)参数
water quality parameter
水质参数
waveform parameter
波形参数
wave-reflection parameters
(声)波反射参数
width parameter
宽度参数
working parameter
工作[运行]参数
X-ray lattice parameters X
射线晶格参数
parameter of accumulation of freight cars
货车集结参数
parameter of apparatus
设备参数
parameter of cavity resonator
空腔谐振器参数
parameter of consistency
相容性参数
parameter of elliptic integral
椭圆积分的参数
parameter of engine cycle
柴油机的循环参数
parameter of microwave circuit
微波电路参数

parameter
来自现代拉丁语parametrum<希腊语para-在旁+metron尺,测度


这个单词是什么意思?

invite美音:[�0�1n'va�0�1t]英音:[in'vait]
invite的中文翻译

及物动词 vt.

1.邀请;招待[(+to)][O2]
He invited several of his friends to the show.
他邀请了几个朋友去看表演。
2.请求;征求[O2]
After his lecture the visiting professor invited questions.
访问教授作完讲座就请大家提问题。
3.引起,招致;吸引;诱惑
Recklessness invites disaster.
莽撞招致灾难。


invited 是invite的过去式或
用作被动语态的形式。


实体造型的表现

目前常用的实体表示方法主要有:边界表示法(BRep)、构造实体几何法(CSG)和扫描法。(1) 三维形体在计算机内的常用表示法对于三维几何元素或简称三维形体,最常用的表示法有两种:CSG和BRep。① CSG表示法:先定义一些形状比较简单的常用体素,如方块、圆柱、圆锥、球、棱柱等。然后用集合运算并、交、差把体素修改成复杂形状的形体。早期的CSG模型仅使用代数方程及半空间的概念,体素只支持多面体与二次曲面体,而不支持表面含有自由曲面的实体。整个模型是棵树结构,最终形体的表面交线与有效区域没有显式给出,不能直接用于NC加工与有限元分析等后继处理。② BRep表示法:用点、边、面、环以及它们之间相互的邻接关系定义三维实体,形体表面、边界线、交线等都显式给出。但是生成个别形体的过程相当复杂、不直观,不可能由用户直接操作。它的优点是能支持所有类型的曲面作为形体表面。能直接支持NC加工与有限元分析等,故其优缺点恰与CSG模型相反。后来,人们转向使用CSG与BRep的混合模型。③ CSG与BRep的混合模型表示法:用CSG作为高层次抽象的数据模型,用BRep作为低层次的具体表示形式。CSG树的叶子结点除了存放传统的体素的参数定义,还存放该体素的BRep表示。CSG树的中间结点表示它的各子树的运算结果。用这样的混合模型对用户来说十分直观明了,可以直接支持基于特征的参数化造型功能,而对于形体加工,分析所需要的边界、交线、表面不仅可显式表示,且能够由低层的BRep直接提供。(2) 三维形体的集合运算通常一个形体是由两个或两个以上较简单的形体(称之为体素)经过集合运算得到的集合运算子包括并、交、差。设A和B是两个用BRep表示描述的维数一致的多面体,集合运算结果形体C=AB的步骤可简介如下:① 确定集合运算两形体之间的关系:形体边界表示BRep结构中的面、边、点之间的基本分类关系分别是"点在面上"、"点在边上"、"两点重合"、"边在面上"、"两边共线"、"两个多边形共面"等六种关系。先用数值计算确定"点在面上"的关系,其余五种关系可以根据"点在面上"关系推导出来。当这些关系发生冲突时,就用推理的方法解决冲突。② 进行边、体分类:对A形体上的每一条边,确定对B形体的分类关系(A在B形体内、外、上面、相交等);同样对B形体上的每一条边,确定对A形体的分类关系。③ 计算多边形的交线:对于A形体上的多边形PA和B形体上的每一个多边形PB,计算它们的交线。④ 构造新形体C表面上的边:对于A形体上和B形体上的每一个多边形PA、PB,根据集合运算的算子收集多边形PA的边与另一个多面体表面多边形PB的交线以生成新形体C表面的边,如果多边形PA上有边被收集到新形体C的表面,则PA所有的平面将成为新形体C表面上的一个平面,多边形PA的一部分或全部则成为新形体C的一个或多个多边型。如果定义了两个形体A和B的完整边界,那么形体C的完整边界就是A和B边界各部分的总和。⑤ 构造多边形的面:对新形体C上的每一个面,将其边排序构成多边形面环。⑥ 合法性检查:检查形体C的BRep表示的合法性。

实体造型的发展

早在60年代初,就提出了实体造型的概念,但由于当时理论研究和实践都不够成熟,实体造型技术发展缓慢。70年代初出现了简单的具有一定实用性的基于实体造型的CAD/CAM系统,实体造型在理论研究方面也相应取得了发展。如1973年,英国剑桥大学的布雷德(I.C. Braid)曾提出采用六种体素作为构造机械零件的积木块的方法,但仍然不能满足实体造型技术发展的需要。在实践中人们认识到,实体造型只用几何信息表示是不充分的,还需要表示形体之间相互关系、拓扑信息。到70年代后期,实体造型技术在理论、算法和应用方面逐渐成熟。进入80年代后,国内外不断推出实用的实体造型系统,在实体建模、实体机械零件设计、物性计算、三维形体的有限元分析、运动学分析、建筑物设计、空间布置、计算机辅助制造中的NC程序的生成和检验、部件装配、机器人、电影制片技术中的动画、电影特技镜头、景物模拟、医疗工程中的立体断面检查等方面得到广泛的应用。实体造型是以立方体、圆柱体、球体、锥体、环状体等多种基本体素为单位元素,通过集合运算(拼合或布尔运算),生成所需要的几何形体。这些形体具有完整的几何信息,是真实而唯一的三维物体。所以,实体造型包括两部分内容:即体素定义和描述,以及体素之间的布尔运算(并、交、差)。布尔运算是构造复杂实体的有效工具。

在MyEclipse里ArrayList总是出现警告,下面提示是什么意思啊?

ArrayList下面的警告是说ArrayList没有进行对象实例化(也就是说没指定ArrayList存放的类型是什么)。
解释:“List list = new ArrayList();”会出现安全警告的原因是list和Arrylist都是object对象,没有进行实例化,导致警告的。

解决办法:将上面的代码写成“List list = new ArrayList();”这种情况下就不会出现警告了。


上一篇:知觉的拼音

下一篇:蒙昧主义