lastname意思是:姓。
lastname
英[læstnem]美[læstnem]
n.姓
1、ThismethodsimplyreturnsthefirstNameandlastNamefields,concatenatedwithaspaceinbetween.
这个方法只返回firstName和lastName字段,中间使用一个空格连接。
2、Itschildnodeslookforrowsthatexactlymatch(eq)thefirstNameandthelastNameattributes.
它的子节点查找那些精确匹配(eq,等于)firstName和lastName属性的行。
3、IfweincludeLASTNAMEandSALARYintheindexaswell,weneverneedtoaccesstheEMPtablebecauseallthedataweneedexistsintheindex.
如果我们在索引中还包含了LASTNAME和SALARY,我们就不再需要访问EMP表,因为我们需要的所有数据都已经在索引中。
4、Inthiscase,thefunctionretrievesthefirstNameandlastNamepropertiesandputsthemintoanarray-likestructurethatisthenturnedintoastringusingthejoinfunction.
在本例中,函数检索firstName和lastName属性,并将它们放入一个类似数组的结构中,然后使用连接函数将它们转换成一个字符串。
5、ThedetailsforthesecondextractshowthatthepartofthenamestringuptothefirstcommagetscopiedtothelastNameattributeofthePersonobject.
第二个提取的详细信息表明,截止第一个逗号的姓名字符串部分被复制到了Person对象的lastName属性中。