Smali语法问题-怎么给寄存器赋DOUBLE类型的值
原版代码.method public getMoney()D
.register 3
.line 121
iget-wide v0, p0, Lcom/******/********/common/model/wallet/**Wallet;->money:D
return-wide v0
.end method
我想要将money的值写为固定值,从服务器获取到的json里看到money是这种格式 "money": 0.0000,
把getMoney改为静态方法之后,怎么给v0赋double值?比如我要赋666.0000给v0
写成下面这样实测无效,保存运行软件还是显示为0,正确的写法是什么?
.method public static getMoney()D
.register 3
const/high16 v0, 0x29A00000
return-wide v0
在 Java 虚拟机字节码中,如果是静态方法,通常使用 const-wide 指令来生成常量,而不是 const/high16。
.method public static getMoney()D
.register 3
const-wide v0, 0x29A00000
return-wide v0
.end method
const-wide v0, 0x4084d00000000000L # 666.0 实测无效的话,要是我就该怀疑是不是这里赋值没用了。
页:
[1]