在实际开发中可能会遇到需要获取对象的所有属性,这时你可能会自己来遍历一遍获取,其实原生js已经为我们提供了一个方法,他就是Objectkeys(),它返回一个数组,就可以结合forEach方法遍历对象。
1对象
// 1对象
var a = {
a : 123,
b : 'asd',
c : function() {
consolelog( 'haha' );
}
};
consolelog( Objectkeys( a ) ); // [ 'a', 'b', 'c' ]
2数组
// 2数组
var b = [ 123, 21, 31 ];
consolelog( Objectkeys( b ) ); // [ '0', '1', '2' ]
3构造函数
// 3构造函数
function c() {
thisaa = 123;
thisbb = 'asdas';
thiscc = function() {
}
consolelog( Objectkeys( c ) ); // []
4实例化对象
// 4实例化对象
var d = new c();
consolelog( Objectkeys( d ) ); // [ 'aa', 'bb', 'cc' ]
5字符串
// 5字符串
var e = 'sdf123';
consolelog( Objectkeys( e ) ); // [ '0', '1', '2', '3', '4', '5' ]
Systemoutprintln(listget(i)userid);
Systemoutprintln(listget(i)userpassword);
Systemoutprintln(listget(i)username);
是数组的话,应该有查看对象总数的方法吧。
比如
Test[] t = {new Test(),new Test(),new Test()};
Systemoutprint(tlength);
如果是List的话,就有
List l = new ArrayList();
lsize();
这俩个是常用的获取数组长度的方法。希望对你有帮助!
以上就是关于Object.keys()来获取对象的属性全部的内容,包括:Object.keys()来获取对象的属性、如何获取list中对象的属性值、java中如何知道对象数组中对象的个数等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)