简体   繁体   English

Dalvik lfm是什么意思

[英]Dalvik what does lfm mean

I am looking at proguarded android smali code and I came across this declaration 我正在查看受保护的android smali代码,并且遇到了此声明

. field public K:Lfm 现场公众K:Lfm

What data type is K. JesusFreke does not mention it https://github.com/JesusFreke/smali/wiki/TypesMethodsAndFields 什么是K数据类型?JesusFreke没有提到它https://github.com/JesusFreke/smali/wiki/TypesMethodsAndFields

I assume you mean 我想你是说

.field public K:Lfm;

(with a semicolon at the end). (以分号结尾)。

K is not a type, that's the name of the field. K不是类型,这是字段的名称。 The type is Lfm; 类型为Lfm; , which is the type descriptor for the class named fm . ,这是名为fm的类的类型描述符。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM