作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个解决线性程序问题的 Android 程序。我正在使用来自 http://www.ssclab.org 的单纯形求解器的外部库我已经尝试过网站上的示例,并且在 Eclipse 中运行良好。现在我正在尝试在 Android Studio java 类中实现代码。但是我不知道如何从 Activity 中调用此类。我怎样才能将字符串“hasil”获取到MainActivity?
public class example {
public static void main(String[] args) throws Exception {
ArrayList< String > constraints = new ArrayList< String >();
constraints.add("min: 3Y +2x2 +4x3 +7x4 +8X5 ");
constraints.add("5Y +2x2 +3X4 >= 9");
constraints.add("3Y + X2 +X3 +5X5 >= 12");
constraints.add("6Y+3.0x2 +4X3 +5X4 <= 124");
constraints.add(" y + 3x2 +3X4 +6X5 <= 854");
LP lp = new LP(constraints);
SolutionType solution_type=lp.resolve();
if(solution_type==SolutionType.OPTIMUM) {
Solution soluzione=lp.getSolution();
for(Variable var:soluzione.getVariables()) {
SscLogger.log("Variable name :"+var.getName() + " value :"+var.getValue());
}
hasil = "Value:"+soluzione.getOptimumValue();
}
}
}
最佳答案
在您的 Activity 中创建一个像这样的函数,并在您需要时调用该函数,例如在 Activity 启动时或单击按钮时。
private void demoFunction() throws Exception
{
ArrayList< String > constraints = new ArrayList< String >();
constraints.add("min: 3Y +2x2 +4x3 +7x4 +8X5 ");
constraints.add("5Y +2x2 +3X4 >= 9");
constraints.add("3Y + X2 +X3 +5X5 >= 12");
constraints.add("6Y+3.0x2 +4X3 +5X4 <= 124");
constraints.add(" y + 3x2 +3X4 +6X5 <= 854");
LP lp = new LP(constraints);
SolutionType solution_type=lp.resolve();
if(solution_type==SolutionType.OPTIMUM) {
Solution soluzione=lp.getSolution();
for(Variable var:soluzione.getVariables()) {
SscLogger.log("Variable name :"+var.getName() + " value :"+var.getValue());
}
hasil = "Value:"+soluzione.getOptimumValue();
}
}
关于java - 如何从 Activity 中调用类(class),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56112729/
我是一名优秀的程序员,十分优秀!