📄 weightunit.java
字号:
package ranab.unit;
/**
* Weight unit converter class.
*
* @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
*/
public
class WeightUnit extends BaseUnit {
private final static String[] UNITS = {
"ounce",
"pound",
"gram",
"kilogram"
};
// base weight unit is kg
private final static double[] KG_TABLE = {
35.27396194958041,
2.2046226218487756,
1000,
1
};
/**
* Get all the possible units.
*/
public String[] getAllUnits() {
return UNITS;
}
/**
* Convert one unit from another
*/
public String convertUnit(String value, int from, int to) throws UnitException {
double inVal = getDoubleValue(value);
double outVal = inVal*KG_TABLE[to]/KG_TABLE[from];
return String.valueOf(outVal);
}
/**
* Return unit type.
*/
public String toString() {
return "Weight";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -