java 方法的重载
Posted Da_luo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 方法的重载相关的知识,希望对你有一定的参考价值。
javax.comm (package). CommPortIdentifier (class)
方法的重载:方法名一样,参数不一样,返回值不一样,实现不同的功能。
static CommPortIdentifier |
getPortIdentifier(CommPort port) Obtains the CommPortIdentifier object corresponding to a port that has already been opened by the application.
通过应用程序已经打开的串口获取 CommPortIdentifier 对象。
|
static CommPortIdentifier |
getPortIdentifier(java.lang.String portName) Obtains a CommPortIdentifier object by using a port name.
通过串口名获取 CommPortIdentifier 对象。
|
static java.util.Enumeration
|
getPortIdentifiers() Obtains an enumeration object that contains a CommPortIdentifier object for each port in the system.
获取一个枚举对象包含 系统中每一个串口的CommPortIdentifier 对象。
enumeration 接口中的对象是 CommPortIdentifier.
|
以上是关于java 方法的重载的主要内容,如果未能解决你的问题,请参考以下文章
java基础3-重载+命令行传参+递归+数组+排序
Java 基础语法方法的使用
10方法的定义和重载和递归
导航架构片段重载问题
导航架构片段重载问题
JavaSE 方法的使用