Enter interface name used to connect to

kevin_wei5552022-10-04 11:39:543条回答

已提交,审核后显示!提交回复

共3条回复
谚语早到 共回答了11个问题 | 采纳率100%
输入用于连接到接口名称
1年前
xwxhl 共回答了19个问题 | 采纳率84.2%
填写网络接口
1年前
足迹啊 共回答了76个问题 | 采纳率
端口名常常与 联系
1年前

相关推荐

英语翻译Analytical chemistry at the interface between metrology
英语翻译
Analytical chemistry at the interface between metrology and problem solving.
xdh2661年前3
wdh520 共回答了10个问题 | 采纳率90%
分析化学是量化与问题解决的桥梁.
“三项设备的接口”英语应该怎么说?请注意:是三项设备,不是三项接口.如果是interface of three kind
“三项设备的接口”英语应该怎么说?请注意:是三项设备,不是三项接口.如果是interface of three kinds of equipment好象又多了一个of,读起来不太通顺
DLLUO 的答案中equipment是可数名词吗?
wensizhao1年前2
杰深 共回答了18个问题 | 采纳率94.4%
interface of three equipments
回答者:dlluo - 同进士出身 七级 12-26 15:28
问题补充:DLLUO 的答案中equipment是可数名词吗?
请看实际例子:
面向对象与Java程序设计基础题目:设计一个程序可以一计算平面图形的面积和立体图形的体积。1.使用interface关键
面向对象与java程序设计基础
题目:设计一个程序可以一计算平面图形的面积和立体图形的体积。
1.使用interface关键字定义shape接口,接口中包含一个求解面积的方法定义;
2.使用extends从接口shape派生出接口shape2d和shape3d接口,并为接口shape2d添加一个求解周长的方法定义;为接口shape3d添加一个求***积的方法定义;
3.编写一个circle类,该类实现shape2d接口;
4.编写一个square类,该类实现shape3d接口;
5.定义一个scaleable接口,该接口中定义一个scale(double proportion)方法;
6.编写一个可缩放的圆形circlescaleable类,该类继承于circle类同时实现scaleable接口;
7.编写一个circlescaleable类的测试程序。
三、评分标准
1.按照要求完成各题(80分)
2.完成思考题:
(1)接口类型变量能否指向子类实例对象?(10分)
(2)能否使用接口实现多态性技术的编程?(10分)
endless4151年前1
大狼的天空 共回答了15个问题 | 采纳率93.3%
1.shape接口:
public interface Shape {

double getArea();
}
2.shape2D接口:
public interface Shape2D extends Shape {
double getCircumference();
}
shape3D接口:
public interface Shape3D extends Shape {
double getVolume();
}
3.Circle类:
public class Circle implements Shape2D {

public Circle(double radius){
this.setRadius(radius);
}
@Override
public double getCircumference() {
return 2*Math.PI*radius;
}
@Override
public double getArea() {
return Math.PI*radius*radius;
}

public void setRadius(double radius) {
this.radius = radius;
}
public double getRadius() {
return radius;
}
private double radius;
}
4.Square类:
public class Square implements Shape3D {

public Square(int length,int width,int height){
this.setHeight(height);
this.setLength(length);
this.setWidth(width);
}
@Override
public double getVolume() {
return length*width*height;
}
@Override
public double getArea() {
return 2*length*width+2*width*height+2*length*height;
}

public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
private int length;
private int width;
private int height;
}
5.Scaleable接口:
public interface Scableable {
void scale(double propertion);
}
6.CircleScaleable类:
public class CircleScaleable extends Circle implements Scableable {
public CircleScaleable(int radius) {
super(radius);
}
@Override
public void scale(double propertion) {
super.setRadius(super.getRadius()*propertion);
}
}
7.CircleScaleable测试程序:
public class CircleScaleableTest {
public static void main(String[] args){
CircleScaleable circle=new CircleScaleable(100);
printShape2D(circle);
circle.scale(0.5);
printShape2D(circle);
circle.scale(2.5);
printShape2D(circle);
}

public static void printShape2D(Shape2D shape){
System.out.println("##############n");
System.out.println("Circumference:"+shape.getCircumference());
System.out.println("Area:"+shape.getArea()+"n");
}
}
interface Ethernet0/0/0 和interface GigabitEthernet1/0/0这两个命令
interface Ethernet0/0/0 和interface GigabitEthernet1/0/0这两个命令各指的是交换机的那个端口.
interface Ethernet0/0/0 和interface GigabitEthernet1/0/0这两个命令各指的是交换机的那个端口.希望大侠指教.
pp761年前1
lilei2108 共回答了15个问题 | 采纳率93.3%
interface Ethernet0/0/0 指的是以太网端口0下面的子端口0
interface GigabitEthernet1/0/0 指千兆以太网接口 1/0/0表示机器号/槽位号/子接口号
英语翻译请翻译order一词在例句中的意思:1.The amplitudes of the interface retu
英语翻译
请翻译order一词在例句中的意思:
1.The amplitudes of the interface returns(物体表面回波的振幅) vary statistically over many orders of magnitude.
2.an expected bias error on the order of ±1 m RMS(均方根).
弹指温柔1年前3
弱女子 共回答了21个问题 | 采纳率66.7%
orders of magnitude
数量级
on the order of
属于…同类的;与…相似的;近似
interface在这段代码里是什么意思,
interface在这段代码里是什么意思,
下面的程序编译运行后的输出结果是( )
public class Test implements A {
int x=10;
public static void main(String args[]) {
Test c1 = new Test();
System.out.println(c1.x+A.k);
}
}
interface A {
intk= 10;
}
落花流水的三1年前1
七星伴月1011 共回答了23个问题 | 采纳率100%
输出应该是20
Test类实现了一个A接口,接口A中包含了一个变量k,实现该接口的类都可以使用该变量
思科路由器中,ip nat inside source list 1 interface serial0/3/0 ove
思科路由器中,ip nat inside source list 1 interface serial0/3/0 overload
此命令后面加与不加overload 有什么区别?
事情的由来1年前1
无斌 共回答了20个问题 | 采纳率100%
不加的话,只是做nat,加了就是nat加pat ,不加只做ip地址转换加了做端口转换
management network from the above interface summary:怎样配置?
沙舞尘歌1年前2
铁血小气门 共回答了16个问题 | 采纳率87.5%
根据上面的端口概述来维护/管理网络.
附:最好把全文档贴上来,或截图,这样理解起来会更方便
这里1b表示什么意思.整个“1b Interface Rating”是一张表格中的一项指标(ASTM D1094 柴油抗
这里1b表示什么意思.整个“1b Interface Rating”是一张表格中的一项指标(ASTM D1094 柴油抗乳化试验),对应的两种柴油的该项指标分别是12:15min和5:30min.所以整个“1b Interface Rating”用准确的中文应该如何表达,
xinguang1年前1
可爱伊人儿 共回答了12个问题 | 采纳率100%
水反应界面率:Water reation interface rating,
1b代表JP-4 F31004 和 JP-5 F31005标准规定的反应界面率的最大值.
所以“1b Interface Rating”就表示,最大反应界面率下乳化剂的添加比例.
12:15min代表可以添加的乳化剂的比例
英语翻译you still can’t build a complex interface that’s anywher
英语翻译
you still can’t build a complex interface
that’s anywhere near as responsive as a window in a rich client application.
白色多伦多1年前5
gfdh212tr5 共回答了19个问题 | 采纳率100%
你还是不能建立一个复杂的界面,它正是此处几乎是有求必应的一个富客户端应用程序的窗口
根据楼主给的句子,大概是这样一个意思,不过往往英语的翻译还是要根据前后文的意境,楼主最好再根据上下文的意思给予恰当的词语.
求翻译 不要翻译器出来的 就一句话 Marketing–sales interface configurations i
求翻译 不要翻译器出来的 就一句话 Marketing–sales interface configurations in B2B firms
张梓萱1年前7
晗雨氏 共回答了14个问题 | 采纳率92.9%
在B2B模式公司中的市场营销界面的配置
interface vlan—interface 30
疑似tt1年前1
zero911 共回答了16个问题 | 采纳率87.5%
进入vlan30的三层接口视图
这个视图是一个虚拟的三层接口,可以配置ip地址等参数,可配置策略过滤等
音频线的“接头”英语怎么说?我记得“接口”是用interface,那“接头”呢?
zxcvbnmkao1年前5
interfang 共回答了16个问题 | 采纳率81.3%
connector,或者plug
英语翻译The hardware interface for GPS units is designed to meet
英语翻译
The hardware interface for GPS units is designed to meet the NMEA requirements.They are also compatible with most computer serial ports using RS232 protocols,however strictly speaking the NMEA standard is not RS232.They recommend conformance to EIA-422.The interface speed can be adjusted on some models but the NMEA standard is 4800 b/s (bit per second rate) with 8 bits of data,no parity,and one stop bit.All units that support NMEA should support this speed.Note that,at a b/s rate of 4800,you can easily send enough data to more than fill a full second of time.For this reason some units only send updates every two seconds or may send some data every second while reserving other data to be sent less often.In addition some units may send data a couple of seconds old while other units may send data that is collected within the second it is sent.Generally time is sent in some field within each second so it is pretty easy to figure out what a particular gps is doing.Some sentences may be sent only during a particular action of the receiver such as while following a route while other receivers may always send the sentence and just null out the values.Other difference will be noted in the specific data descriptions defined later in the text.NMEA consists of sentences,the first word of which,called a data type,defines the interpretation of the rest of the sentence.Each Data type would have its own unique interpretation and is defined in the NMEA standard.The GGA sentence (shown below) shows an example that provides essential fix data.Other sentences may repeat some of the same information but will also supply new data.Whatever device or program that reads the data can watch for the data sentence that it is interested in and simply ignore other sentences that is doesn't care about.In the NMEA standard there are no commands to indicate that the gps should do something different.Instead each receiver just sends all of the data and expects much of it to be ignored.Some receivers have commands inside the unit that can select a subset of all the sentences or,in some cases,even the individual sentences to send.There is no way to indicate anything back to the unit as to whether the sentence is being read correctly or to request a re-send of some data you didn't get.Instead the receiving unit just checks the checksum and ignores the data if the checksum is bad figuring the data will be sent again sometime later.
tyranny1年前1
xiangsideren 共回答了20个问题 | 采纳率85%
不是说没人会译,估计是文章太长分又不多...-_-
(包括我在内,对不起了~)
楼主把文章分段,再试下这个网址.
有英文基础的根据译文改改就好.
思科的命令interface serial
思科的命令interface serial
inferface fa 2/0呢?interface serial 0/0呢?
笑笑闯qq1年前1
xinglong1234 共回答了24个问题 | 采纳率95.8%
interface fa 2/0 快速以太端口
interface serial 0/0 串口
思科交换机 interface port-channel 5 命令有什么用?
思科交换机 interface port-channel 5 命令有什么用?
sw1(config) interface port-channel 5
这条命令有什么用?是什么意思呢?
谢谢大家 谢谢
zengjiao1年前1
林楚馨 共回答了15个问题 | 采纳率93.3%
还是我来告诉你吧 interface portchannel 是打开这个接口配置模式 你可以配置一些额外的参数 例如trunk封装啊 允许的哪些vlan啊 而以太通道下的这些物理接口会继承配置参数
而channei-group 是创建通道接口 就是将规定好的物理接口划分进去 还有疑问吗?
click on the gear shape icon set into the interface中文翻译什么意思
594zzf1年前1
螺旋卷发 共回答了19个问题 | 采纳率84.2%
click on the gear shape icon set into the interface
在齿轮形状图标设置在界面上点击
英语翻译如何翻译It provides an integrated Wiki,an interface to versi
英语翻译
如何翻译
It provides an integrated Wiki,an interface to version control systems,and a number of convenient ways to stay on top of events and changes within a project.
rockeko1年前3
jiangswj 共回答了14个问题 | 采纳率100%
它提供了一个综合维基,一个版本控制系统的接口,在项目活动中通过多种方便
的方法来知道事件和变化
stay on top of… 知道 ,保持,了解
英语翻译Provide a pleasant andeffective user interfaceTheuser in
英语翻译
Provide a pleasant andeffective user interface
Theuser interacts with the operating systems through the user interface andusually interested in the look and feel of the operating system.The mostimportant components of the user interface are the command interpreter,thefile system,on-line help,and application integration.The recent trend hasbeen toward increasingly integrated graphical user interfaces that encompassthe activities of multiple processes on networks of computers.
丙菜1年前3
zinedane 共回答了16个问题 | 采纳率87.5%
提供一个舒适高效的用户界面.
用户通过用户界面来与操作系统互动,且通常对操作系统的外观和感觉感兴趣.用户界面最重要的组成部分是命令解释程序、文件系统、在线帮助和应用集成.当前的趋势是逐渐集成化的图形用户界面,其中包含了计算机网络上多个进程的活动.
H3C的S3100交换机 在输入Interface Vlan-interface 1命令后提示
H3C的S3100交换机 在输入Interface Vlan-interface 1命令后提示
There is not enough routing resources available
请问是什么原因,如何解决呢?
这是产品操作手册的原文↓
2.Telnet登录配置
# 进入系统视图.
system-view
# 创建Vlan-interface 1接口,用于配置Telnet登录所使用的IP地址.
[Sysname] interface vlan-interface 1
# 根据目前网络中IP网段的分布和使用状况,为设备指定一个IP地址.此处以192.168.0.72为例.
[Sysname-Vlan-interface1] ip address 192.168.0.72 24
[Sysname-Vlan-interface1] quit
# 进入VTY用户接口0到4的视图.
[Sysname] user-interface vty 0 4
[Sysname-ui-vty0-4]
# 根据实际需要,配置VTY用户接口的认证方式.
略,具体可参考手册“登录交换机”章节的介绍
# 根据需要配置VTY用户可以使用的命令级别,此处以3为例,即可以使用所有命令.
[Sysname-ui-vty0-4]user privilege level 3
moving_xm1年前1
xiaoliaosea 共回答了17个问题 | 采纳率94.1%
此交换机设置过其他int vlan xx 的接口,并设置了ip地址.
s3100为2层交换机只能创建一个int vlan 接口.
你使用 dis cu 查看一下是否有其他int vlan
same-security-traffic permit intra-interface是什么意思
hzb20071年前2
大科科 共回答了16个问题 | 采纳率87.5%
相同安全级别的流量允许在相同安全级别的接口间传递.
这个..大概指的是..电之类的东西吧..
英语翻译Motion Interface™ is becoming a “must-have” functi
英语翻译
Motion Interface™ is becoming a “must-have” function being adopted by smartphone
主要解释一下adopted是意思和用法,
w071181年前1
gfjxgjxgfj5685 共回答了25个问题 | 采纳率92%
通过智能手机,运动界面™正在成为一个“必备”的功能 adopted 采用 ,正在进行时越来越被采用
英语翻译ofmefenpyrdiethyl in water interface using TiO2 P-25 and
英语翻译
of
mefenpyrdiethyl in water interface using TiO2 P-25 and Hombikat UV100
风儿日落1年前1
surpasslee 共回答了17个问题 | 采纳率88.2%
效率和降解产物的光降解作用的说明
在水中mefenpyrdiethyl接口使用二氧化钛p 25和Hombikat UV100
希望能帮到你,望采纳.
计算机英语选择题7.A user interface we said here is _____.A.an intera
计算机英语选择题
7.A user interface we said here is _____.
A.an interaction between an application program and a user
B.an interaction between an operating system and user
C.a text-based user interface or GUI
D.an interface between a computer and its peripheral device
8.In packet switched networks data send in _____.
A.byte B.pieces C.frame D.packet
6.Functions of a network server are __ABD___.C
A.managing the network resources
B.controlling access to shared programs
C.connecting the users
D.controlling access to shared hardwares
请问C是答案么?多选题~
天蝎仔1年前1
tinalili-rose 共回答了13个问题 | 采纳率100%
我们通常所说的用户界面是指( )A应用程序和用户的相互作用B操作系统和用户的相互作用C文本用户的界面或者图形用户界面D电脑和外围设备的的相互作用选C 电子计算机系统中实现用户与计算机信息交换的软件、硬件部分.软...
H3C s3610交换机 interface gigabitEthernet 1/1/1 什么意思 3个1表示什么意思?
ewbch1年前1
EdwardEric 共回答了21个问题 | 采纳率85.7%
1/1/1 是说第一个插槽中的第一块板子的第一个接口!
"统一的界面"是an unified interface 还是a unified interface?
"统一的界面"是an unified interface 还是a unified interface?
为什么是a?这后面是u u是元音不是么?
雨路遥1年前1
i2vh5917 共回答了23个问题 | 采纳率91.3%
a
英文 翻译 web, interface, desing 方面
英文 翻译 web, interface, desing 方面
Provide a brief description of the interface including the time taken for the main page to load, the
number of “zones” used, the purpose of each zone, and the general “look” of the interface.
这里的zones 指的是什么
滴答小女巫1年前1
想学诗词 共回答了18个问题 | 采纳率94.4%
ZONE (网站)板块,
点击(使用)“板块”的数量
英语翻译failed to open archive interface.MPQ
偶的yy泪1年前1
gavin282 共回答了18个问题 | 采纳率83.3%
无法打开存档interface.MPQ
英语翻译我看网上某个版本的叫micro computer system and interface,,那到底要不要mic
英语翻译
我看网上某个版本的叫micro computer system and interface,,那到底要不要micro呢
lzwmm1年前1
lerema 共回答了14个问题 | 采纳率92.9%
你说的就是对的,要加 micro
英语翻译effect analysis of bearing and interface dynamics on too
英语翻译
effect analysis of bearing and interface dynamics on tool point FRF for chatter stability in machine tool by using a new analytical model for spindle-tool assemblies
明透1年前2
han_wuji 共回答了12个问题 | 采纳率100%
主轴承组装(或:装配)新式分析模型对机床颤振稳定性频响函数(FRF)的轴承力学与界面力学的效果分析
供参
英语翻译Have a Websphere MQ Series interface MediaContact Server
英语翻译
Have a Websphere MQ Series interface MediaContact Server,as the IBM Websphere MQ bus message client,can exchange data with any application connected to this bus.
This task enables transforming a file received in a folder into a Websphere MQ Series message in real time.MediaContact can generate an acknowledgment of receipt as soon as the message is taken into account by the Websphere MQ series.
MediaContact thus enables,without any additional development,connecting a heterogeneous application to the IBM Websphere MQ bus.
qwwass1231年前1
xiaoship 共回答了18个问题 | 采纳率94.4%
WebSphere MQ系列接口MediaContact服务器,作为IBM WebSphere MQ总线消息客户端,可以与连接到该总线的任何应用程序进行交换数据.此任务可以实时的把收到的文件夹中的文件转换成WebSphere MQ系列信息.只要Websphere MQ...
英语翻译如题,原文:The G1 has a slick,clever touch interface to go al
英语翻译
如题,
原文:
The G1 has a slick,clever touch interface to go along with its keyboard,and it includes a powerful new operating system.The operating system,called Android,was built by Google.It is slated to appear on other phones over time,though it likely will look different on other devices because it is fully open to modification by other companies.
wenzhii1年前2
野渡闲人 共回答了19个问题 | 采纳率94.7%
SLATE [sleit]
基本翻译
n.板岩, 石板, 石片, 蓝色
adj. 暗蓝灰色的, 含板岩的
v. 铺石板
slated roof:石板屋面|石板屋顶
be slated to:内定的职务|提名作候选人
be slated of:内定...的职务|提名...作候选人
顺便讲下语法 The synthetic device interface is defined to be virtu
顺便讲下语法
The synthetic device interface is defined to be virtualization-friendly to enable efficient virtualization compared to the overhead associated with I/O emulation.
enable efficient virtualization 翻译为实现虚拟化?
compared to 的主语是谁?associated with 的主语又是谁?
这是怎么个语法结构?
遇到长句我就晕 膜拜~
干哏倔1年前3
强人看女王 共回答了20个问题 | 采纳率75%
Overhead意为 离地面的; 头顶上的; 上空的,架空的
Emulation为仿真的意思
Friendly意为友好的,根据后面efficient一词,在这里friendly可引申为易于……的,
1翻译为:
和那种架空的,通过I/O连接的仿真设备相比,为了使得虚拟化更加有效,这种合成设备的表面应该是易于虚拟化的.
2enable efficient virtualization 翻译为使得虚拟化更加有效
3compared to 的主语是毫无疑问就是The synthetic device interface,他就是被compared to(被比较)的对象
4associated with 的主语是前面的the overhead
5 compared to the overhead associated with I/O emulation.
enable efficient virtualization是一个介词短语作比较状语,在这里它后置增加了难度
主句是The synthetic device interface is defined to be virtualization-friendly to enable efficient virtualization
The synthetic device interface是主语
is defined to be是谓语,这里is是系动词,因此是一个系表结构,virtualization-friendly是一个合成词作表语,
to enable efficient virtualization是be friendly to 的一个搭配,是不定式表目的
6长难句,首先你要根据上下文意境知道这里讲什么,也就是说你应该知道这个句子意思的大概,这样会方便你断句,断句之后,你首先找出各个句子的主谓宾定状补,然后根据意思调整各个成分的语序(就比如本句将比较状语放在前面翻译)
高手帮忙!英译汉 科技英语A non-invasive interface to track eye position
高手帮忙!英译汉 科技英语
A non-invasive interface to track eye position using digital image processing techniques is under development .
Information about head and eye position is obtained from digital images.
guotuofeng1年前1
Z鉛筆頭 共回答了18个问题 | 采纳率94.4%
用数码图像处理技术来跟踪眼睛位置的没有攻击性的界面正在研发中.
关于头和眼睛的位置的信息是从数码图像中获得的.