小编jyo*_*jyo的帖子

10
推荐指数
1
解决办法
4万
查看次数

In which real life application is BPM actually used?

What is the role of BPM (BussinessProcessManagement) in a realtime application?
I mean in which cases or where is BPM actually used?
I could get the documentation from the net, but where actually is it used?

business-process-management

2
推荐指数
1
解决办法
1652
查看次数

SCJP - 数字格式

鉴于:

public class LineUp {
    public static void main(String[] args) {
        double d = 12.345;
        // insert code here
    }
}
Run Code Online (Sandbox Code Playgroud)

在第4行插入哪个代码片段会产生输出| 12.345|

A. System.out.printf("|%7d| \n", d);
B. System.out.printf("|%7f| \n", d);
C. System.out.printf("|%3.7d| \n", d);
D. System.out.printf("|%3.7f| \n", d);
E. System.out.printf("|%7.3d| \n", d);
F. System.out.printf("|%7.3f| \n", d);
Answer: F
Run Code Online (Sandbox Code Playgroud)

printf语句的解释是什么,为什么是|%7d | 正在给予illegalFormatConversionException ?

谢谢

java scjp certificate number-formatting

0
推荐指数
1
解决办法
3497
查看次数