我有这个Java代码,但我不知道如何在其中引入power,sin,cos或其他函数。我寻找各种网站,但没有找到它的运气
public class calculator extends Activity {
private WebView mWebView;
private StringBuilder mMathString;
private ButtonClickListener mClickListener;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.calculator);
// Create the math string
mMathString = new StringBuilder();
// Enable javascript for the view
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
// Set the listener for all the buttons
mClickListener = new ButtonClickListener();
int idList[] = { R.id.button0, R.id.button1, R.id.button2,
R.id.button3, R.id.button4, R.id.button5, R.id.button6,
R.id.button7, R.id.button8, R.id.button9, R.id.buttonLeftParen,
R.id.buttonRightParen, R.id.buttonPlus, R.id.buttonPlus,
R.id.buttonMinus, R.id.buttonDivide, R.id.buttonTimes,
R.id.buttonDecimal, R.id.buttonBackspace, R.id.buttonClear, R.id.buttonPow };
for(int id : idList) {
View v = findViewById(id);
v.setOnClickListener(mClickListener);
}
}
private void updateWebView() {
StringBuilder builder = new StringBuilder();
builder.append("<html><body>");
builder.append("<script type=\"text/javascript\">document.write('");
builder.append(mMathString.toString());
builder.append("');");
builder.append("document.write('<br />=' + eval(\"");
builder.append(mMathString.toString());
builder.append("\"));</script>");
builder.append("</body></html>");
mWebView.loadData(builder.toString(), "application/xhtml", "UTF-8");
}
private class ButtonClickListener implements OnClickListener {
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.buttonBackspace:
if(mMathString.length() > 0)
mMathString.deleteCharAt(mMathString.length()-1);
break;
case R.id.buttonClear:
if(mMathString.length() > 0)
mMathString.delete(0, mMathString.length());
break;
default:
mMathString.append(((Button) v).getText());
}
updateWebView();
}
}
}
有人会说如何引入电源功能吗?
答案 0 :(得分:1)
您可能希望查看Java的Math package。它有很多数学函数,包括你正在寻找的那些。如果导入不存在,您可能需要在使用Math函数的文件的开头添加import java.lang.Math;
的导入。
例如,double answer = Math.pow(firstnum,secondnum);
是将一个数字提升到另一个数字的函数,或double answer = Math.sin(anum)
以给出变量anum中的值的sin,等等。
当您阅读该课程的javadoc时,您将看到应该提供您想要的其他“科学”计算器功能的其他功能。
请记住,整数和双精度对其存储容量有限制,因此如果有人决定做一些像100,000 ^ 100,000,000这样疯狂的事情,你可能想要考虑如何处理溢出。如果对于真正非常大的数字具有足够的精确度对您来说很重要,您可能还需要查看BigDecimal或BigInteger等类。
答案 1 :(得分:0)
答案 2 :(得分:0)
Java将java.lang.Math
类中内置的这些函数作为静态方法
您可以像这样对它们进行校准:
权力,使用Math.pow(double, double)
double number = 3.42d;
double exponent = 5.14d;
double power = Math.pow(number, exponent);
平方根,使用Math.sqrt(double)
double shortSide1 = 4.0d;
double shortSide2 = 3.0d;
double longSide = Math.sqrt(shortSide1 * shortSide1 + shortSide2 * shortSide2);
// All credits goto Pythagoras.
Sin,cos,tan
double angle = 2.13d;
double sin = Math.sin(angle);
double cos = Math.cos(angle);
double tan = Math.tan(angle);
Arcsin,arccos,arctan
double value = 0.13d;
double asin = Math.asin(value);
double acos = Math.acos(value);
double atan = Math.atan(value);
所有这些函数都是Native(不是用Java编写的),这意味着它们将在您的平台上尽可能好地运行。
答案 3 :(得分:0)
要回答我认为你真的想知道的问题,那就是如何在不使用Java的数学包的情况下计算数学函数...
您正在查看的代码将一堆javascript打印到HTML页面,包括eval("your math expression")
,其中包含在eval中输入的数学表达式,并且该eval行实际上正在进行数学评估,它是这样做是使用javascript而不是Java来实际进行数学运算。
http://javascriptsource.com/math-related/5-function.html有使用javascript的eval函数执行权限的示例...您必须修改应用程序生成的javascript才能以这种方式评估权限。