reduce的用法是什么
1、reduce的基本意思是“减少”,指重量、程度、数目、范围、速度等减少或降低,不仅可以指量的变化,还可以指质的转变。引申可作“降职”“使...…陷入某种状态或状况中”“将...…概括或简化”“将…...还原”“征服”“攻陷”等解。
2、reduce可用作及物动词,也可用作不及物动词。用作及物动词时接名词或代词作宾语。可用于被动结构。
3、reduce偶尔也可接动词不定式作宾语补足语,意思是“使...…不得不...…”。
扩展资料:
reduce的近义词
bankrupt
英 [’bæŋkrʌpt] 美 [’bæŋkrʌpt]
adj. 破产的;道德败坏的;枯竭的
n. 破产者;无知的人
vt. 使破产
例句:He realizes the bankrupt’s assets.
翻译:他变卖破产者的财产。
用法
adj. (形容词)
1、bankrupt用作形容词的基本意思是“破产的,倒闭的”,尤指无力偿还债务,或经营不善而关闭的。引申可指“缺乏的”,可用于物质上,也可用于道德上。
2、bankrupt用作形容词时不用于比较等级。
请问android内的方法getPackageManager()属于哪个类
getPackageManager()方法属于ContextWrapper类,该类继承自Context类
/**
* Proxying implementation of Context that simply delegates all of its calls to
* another Context. Can be subclassed to modify behavior without changing
* the original Context.
*/
public class ContextWrapper extends Context
jquery 的selector怎么用
selector:属性用于返回获取当前jQuery对象时传给jQuery(selector, context)函数的原始选择器(即selector参数)。换句话说,你通过什么选择器来获得的当前jQuery对象,当前jQuery对象的selector属性就返回什么。-du
语法:jQueryObject.selector
返回值:selector属性的返回值是String类型,返回该jQuery对象的原始选择器。如果当前jQuery对象不是通过传入选择器字符串来获得的,那么将返回空字符串““。
实例说明:
《div id=“n1“》
《div id=“n2“》
《ul id=“n3“》
《li id=“n4“》item1《/li》
《li id=“n5“》item2《/li》
《li id=“n6“》item3《/li》
《/ul》
《/div》
《/div》
/*编写jquery代码:*/
var $li = $(“ul li“);
document.writeln( $li.selector ); // ul li
var $p = $(“#n1 p“);
// 虽然$p是一个空的jQuery对象,没有匹配到任何元素,但也包含了传入的选择器信息
document.writeln( $p.selector ); // #n1 p
var $ul = $(“#n1“).find(“ul“);
// jQuery根据我们的操作自动计算出相应的选择器
document.writeln( $ul.selector ); // #n1 ul
var div_n2 = document.getElementById(“n2“);
var $n2 = $(div_n2); // 以DOM元素的方式获取jQuery对象
document.writeln( $n2.selector ); // (空字符串)
/*********代码运行结果***********/
ul li
#n1 p
#n1 ul