由买买提看人间百态

topics

全部话题 - 话题: overrides
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
n******1
发帖数: 3756
1
来自主题: Java版 - 问个set和literal String的问题
为什么我这里的literal string 和我的封装类equals不上呢,放进set里面也说不相同
,但是hashcode是相等
import java.util.HashSet;
import java.util.Set;
public class SetTesting{

static class WrapString{
String str;
public WrapString(String str){
this.str = str;
}

@Override
public String toString(){
return str;
}

@Override
public int hashCode(){
return str.hashCode();
}
@Override
p... 阅读全帖
d****p
发帖数: 685
2
The second one overrides the first one in Derived. So in Derived's vtable
there is only one entry for clone()
whose offset is same as the clone() in Base's vtable.
Before C++98 overriding virtual member functions required both function
signature and return type match.
Now it is same as non virtual function overriding.
d****p
发帖数: 685
3
What I meant is it is same as a non virtual function overriding regarding
that their return types don't have to match.
However, your comment drove me to check standard and here below are the
rules (10.3.5):
5 The return type of an overriding function shall be either identical to the
return type of the overridden function or
covariant with the classes of the functions. If a function D::f overrides a
function B::f, the return types of the
functions are covariant if they satisfy the following crite
a****a
发帖数: 67
4
原文:http://ladder.azurewebsites.net/forum.php?mod=viewthread&tid=121&extra=page%3D1
第一集:Mr.Method
Hi,大家好~~我是Mr.Method,和Mr. Okay是好哥们儿。
在所有面向对象的语言里你都能见到我的身影。不信?你们学编程的时候第一个程序
都是Hello World吧?那就是依靠对我的调用实现的——无论是哪个平台、哪种语言,
你一定调用了在命令行里输出字符串的某个Method。
铁三角
在正式介绍我自己之前,还是先说说我的哥哥和妹妹吧,我们的家庭背景有助于大家
对我有一个更好的了解。我的哥哥(Mr. Class)和小妹(Mr. Field)加上我,我们仨
可是面向对象家庭里绝对的主角、“铁三角”。我们三个之所以称为“铁三角”是因为
我们各司其职、配合的非常默契。Mr.Class,他是个很好的组织者,他能把从现实世界
抽象出来的结果良好地组织在一起(这个叫“封装”)——我(Mr.Method)和我小妹
(Ms. Field)被我哥管着(注:被封装在类里)。小妹负责表示我们这个小组织当前
... 阅读全帖
N******K
发帖数: 10202
5
override是有些问题
比如你用某个开源软件 override一个函数
过几个月 此开源软件升级 你得检查所有override是不是正确
s******e
发帖数: 114
6
x没被override吧?只是hide/shadow?
还真想不起java如何override x, c#倒是可以override property.
c******o
发帖数: 1277
7
来自主题: Programming版 - 这次Scala没有入选有点意外呀
你没看懂我的,我的就是这样,只不过没有把trait 拿出来。。。
再给你贴一个我的练习。
trait Functor[F[_]] {
def map[A,B](t: F[A])(f: A => B): F[B]
}
trait Applicative[F[_]] extends Functor[F]{
def unit[A](a: => A): F[A]
def ap[A,B](fa: F[A])(fab: F[A => B]): F[B]
override def map[A,B](t: F[A])(f: A => B): F[B] = ap(t)(unit(f))
}
trait Monad[F[_]] extends Applicative[F] {
def unit[A](a: => A): F[A]
def flatMap[A,B](ma: F[A])(f: A => F[B]): F[B]
override def ap[A,B](la: F[A])(f: F[A => B]): F[B] =
flatMap(f)(t1 => flatM... 阅读全帖
L*****e
发帖数: 8347
8
来自主题: Programming版 - Java题求指导 (转载)
如果是decorator pattern的话,BufferedReader不应该从Reader那里inherit Read()
并overrides Read()吧?InputStreamReader也从Reader()那里inherit Read()并
overrides Read().
这么看BufferedReader怎么也不是decorator pattern,难道说decorator pattern还有
变形体?

override
t****t
发帖数: 6806
9
来自主题: Programming版 - 几个C++书写风格疑问
这好象根本不是什么问题, 必须override的标=0, 不必override的不标
如果没有必须override的, 则把dtor标=0
c******o
发帖数: 1277
10
来自主题: Programming版 - Scala的map和flatmap什么区别?
从下面的code可以看出,flatMap 可以实现map,所以flatMap更强大(比map能干的事多
), 但是map更常见 (有map不一定能实现flatMap)
// id function:
// def id[A](a: A): A = a
// compose function:
// def compose[A,B,C](f: B => C, g: A => B): A => C =
// a => f(g(a))
trait Functor[F[_]] {
def map[A,B](fa: F[A])(f: A => B): F[B]
}
// Functor Law
// identity: map(x)(id) == x
// composition: map(a)(compose(f, g)) == map(map(a,g), f)
trait Applictive[F[_]] extends Functor[F] {
def unit[A](a: => A): F[A]
def ap[A,B](la: F[A])(f: F[A => B]): F... 阅读全帖
b**o
发帖数: 5769
11
唉,碰到过好几次,每次都让我特别郁闷。
就昨天吧,第一个,medicare的,拿来test trip的处方上面没有DX code。我跟她解释
,30分钟内不可能好,要跟医生要code。她很confusing地看着我,说她就在店里
shopping,我跟她很努力地解释了,我也觉得她听明白了,可是还一副不相信我的样子
。然后senior tech来了,我跟她求救,她把我说过的话也说了一遍,人老太太就满意
地走了。我个人认为她看我是外国人,不信任我。heng!
还有一个,也是个老太太,来pick up说有2个药,我一看,refill too soon。
insurance won't pay till 7/4 她说其中一个可以等,另一个她马上就要,我说好,
那你付cash,现在可以给你fill,27块多。她里马就说BS走人了。NND,我只能在心里默
念,yeah, that's what you are.
还有个很恶心的,经理说来好几次了,每次都要我们给她从$50match成$10,说另外一家
就这个价,经理说要打电话之后才能match,她就说人家close了(我看她故意的吧,知
道他们cl... 阅读全帖
l*********o
发帖数: 3091
12
既然back test了,又都是自动trigger,何必盯着市场,难道你想随时override不成?
你override后好吗?是不是还不如不override?
b**t
发帖数: 656
13
http://www.businesswire.com/news/home/20101107005093/en/ATP-Announces-Quarter-2010-Results-Operations-Update
HOUSTON--(BUSINESS WIRE)--ATP Oil & Gas Corporation (NASDAQ: ATPG) today
announced results for third quarter 2010 and an update on operations.
Results of Operations
Production for the third quarter 2010 averaged 21.1 MBoe/day, compared to 21
.3 MBoe/day for the second quarter and 38% greater than the comparable
quarter in 2009. Revenues from oil and gas production were $102.1 million
for ... 阅读全帖
g*********r
发帖数: 9366
14
只要允许真正票选,行政不从属于党, 我共立刻会分裂成几个党,至少两个
因为只要选上就能建立势力
如果搞伊朗那种精神领袖override 一切 ( 咱党中央政治局常委会override一切),
那么屁用没有
R***a
发帖数: 41892
15

然后多交钱可以指定让某个摄像头对准某个地方一段时间。
再多叫一倍钱可以override上一条,
再多叫一倍钱可以override上一条
t*******h
发帖数: 2882
16
http://allafrica.com/stories/201011090721.html
Africa: EU-India Deal Could Threaten Access to Essential HIV Drugs
9 November 2010
Nairobi — As Indian and European officials meet in Brussels to thrash out
the details of a Free Trade Agreement (FTA), civil society activists are
concerned the deal could mean tighter intellectual property protections that
could reduce access to cheap Indian generic drugs.
"The European Union is pushing for data exclusivity, which means Indian
generics manufacturers ... 阅读全帖
r*****l
发帖数: 2859
17
来自主题: Military版 - 我爸对事故的分析
我不是搞控制和调度的。但是我认为警告至少应该有两级。
一级是黄色警告,警告前车可能出现故障,建议刹车。这一级可以override。
另一级是红色警告,如不立即刹车会装车。这一级再任何时间,任何情况下都不能
override,必须立即(自动)刹车。
铁路上的控制只应该更复杂。后车司机即使想人为造成碰撞都不可能。

前车通知调
准点到达解除报警。等意识
a****g
发帖数: 3027
18
系统应该是这样才安全吧:
1。前车之后,产生“红灯--黄灯--绿灯”形成保护带。
2。后车直接自动检测路线旁灯,防止进入前车的“红灯--黄灯--绿灯”保护带. 不经
过调度中心。
3。前车将位置信息实时传给调度处和后车,作为监控用。
关键是1在任何情况下不可以override成绿灯,任何情况都要考虑:
1。雷点劈坏了某个路段,变成全红灯===》 好现象。
2。前车彻底断电,所有通讯中断 ,之后的保护带也必须是“红灯--黄灯--绿灯”
或者是override成全红灯。
这表明保护带信号必须是基于前车重量压轨产生的。
3。检修过程中
==》必须是全红灯
4。检修测试过程中
这里有点复杂,估计有个信号灯的检测过程,信号灯要出现各种颜色一圈
但是必须坚持原则:不能简单地让一排信号灯全绿,引起后车出现误检测而前行。

可以产生比如特殊的检测频率信号闪灯,比如像警车灯闪,但是不引起后车出现误
检测而前行。
5。检修完毕启动过程中
应该有个延迟原理,

要检测是否有多个车字在同一区间,做特殊处理--》上报调度中心人工干预,排除
这种情况,让第一辆... 阅读全帖
b********7
发帖数: 12906
19
there's manual override for flight control system. and it's the pilot's
responsibility to monitor the system and use the manual override when the
auto-system is not working properly.
m**c
发帖数: 7299
20
【 以下文字转载自 GayStudy 俱乐部 】
发信人: msgc (为了下一代免遭变态残害), 信区: GayStudy
标 题: 这是一个振奋人心的消息! (转载)
发信站: BBS 未名空间站 (Sun May 18 13:29:53 2014, 美东)
【 以下文字转载自 USANews 讨论区 】
发信人: msgc (为了下一代免遭变态残害), 信区: USANews
标 题: 这是一个振奋人心的消息!
发信站: BBS 未名空间站 (Sat May 17 22:30:01 2014, 美东)
让那些为了讨好变态人渣而贪赃枉法的人渣也想一想天理报应.
Impeach Chris Piazza? Look who's talking
Posted by Max Brantley on Sun, May 11, 2014 at 7:27 AM
Some elements of the Arkansas legislature Crackpot Caucus emerged Saturday
to talk of impeaching Pulaski Circuit Jud... 阅读全帖
O**e
发帖数: 569
21
2014年09月29日 12:36
来源:中国日报网
16人参与 2评论
原标题:ISIS成员:正筹划在纽约发动猛烈袭击
中国日报网9月29日电(小唐) 据《纽约每日新闻》27日报道称,极端组织“伊斯兰国
”(ISIS)的一名成员宣称,该组织正筹划在纽约发动袭击,而其目标是未来让该组织
旗帜在白宫上空飘荡。
“如果情况允许的话,我们很快就会在纽约发动恐怖袭击。”这名自称法拉赫·希雷顿
的加拿大人通过视频对外界说,“很多兄弟正在那里进行活动。”他还断定美国的武装
分子势必发动一场猛烈的袭击。
他还说:“我还知道很多人——数以千计的人——目前生活在西部,准备好在你们的土
地上行动。”他们的终极目标是看到ISIS的旗帜飘扬在白宫上空。
伊拉克总理阿巴迪最近也提醒称恐怖分子要在纽约和巴黎的地铁发动袭击。为了安抚民
众的恐慌情绪,纽约市市长白思豪25日出现在纽约地铁,向市民保证地铁的安全性。此
外,警长和纽约州的州长还分别乘坐不同的地铁线,向公众证明地铁的安全性。白宫也
回应说,美方情报部门没有收到任何针对地铁的恐怖袭击情报,但表示会进一步研究伊
拉克方面的情报。
The great Ameri... 阅读全帖
v********e
发帖数: 1985
22
参议院没有60票多数,不能override presidential veto,加上不能override
filibuster,啥都做不了。
r*******6
发帖数: 460
23
来自主题: Military版 - 防止副驾锁门的完全之策
强制 auto-pilot靠谱。
很容易从飞行路线、速度、高度来判断飞机是否即将出事(不管什么原因)。
此时强制启动auto pilot,降落至邻近机场。机内无法override。
为避免软件故障。地面应能override。不过需要多方同意(例如FBI和空管局),以免
恐怖分子控制空管局办公室。
k**o
发帖数: 15334
24
来自主题: Military版 - 飞行员要自杀根本放不了。
现在航空系统都follow一个准则,就是人比电脑有判断力。人可以override电脑,
电脑不能override人。
l*****e
发帖数: 1431
25
我来设计一个基本无懈可击的反劫机系统
首先要明确一点,飞机本身是个相对封闭的系统,飞行员的权力又接近无限大(一个俯
冲大家就全挂了)。所以一个保险的系统必然要有部分控制在地面,这是原则问题。
前面有人说地面也不保险,万一有个地面控制员发神经,或者控制塔被恐怖分子劫持,
那么他一下能摔几十架飞机,这个想法有道理,但是是因为设计的不够精细,如果不加
区别地就给地面最大权力,当然很危险,但是如果设计好了,就不一样了。下面说说我
的设计原则:
第一:地面控制台允许的唯一操作就是按照事先设计好的航线在就近机场降落,什么大
角度俯冲,撞山,统统不允许。这就99%地杜绝了控制台恶意撞飞机的可能。
第二:为了加双保险,任何一架飞机起飞时,由计算机随机选取航线上的三个控制台来
作为此次航班可以控制飞机的控制台,并发送一次性密码。发生紧急情况时只有这三个
控制台同时approve, 才可以override飞行员,控制这架飞机降落。可以设想地面控制
台多了一个监视列表,上面有在该时刻他可以控制的航班。假定某航班变成红色并发出
警告,该控制台的安全人员可以用一次性密码输入同时指令该航班降落。在三个控制台
都t... 阅读全帖
d*b
发帖数: 4453
26
乱扯! 美国是判例法法系,州法与联邦法管辖的范围不一样,很多法律联邦不涉及。
比方婚姻法,属于地方法,联邦压根就没有这法律。
如果官司打到联邦最高法院时,联邦最高法院的法官就要审理,而这时9个大法官审判
的结果就成了判例,这种判例就成了判例法,如果各州的相关法律与其反对,联邦的判
例法就会将其override.
但如果各州对判例不服气,也可以和联邦申诉或者打官司,最高法院自己推翻自己判决
的的例子有的事。另外,也可以通过各种国会议员提案立法,修法,搞成了也可以
override 或者overturn最高法院的判决。
另外,美国的国内法是高于国际法的。就是说,不管联邦还是州法,如果与美国以外的
法律包括国际法相抵制时,国内法高于国际法。 这就是美国的牛逼!
d*b
发帖数: 4453
27
从1780年开始,最高法院的判例已经被以各种方式override了200多次了。 平均每3年
就 override 2次。
d*b
发帖数: 4453
28
1) 看看25天内的rehearing咋办;
2) 如果最高法院不能自己override或者overturn,我估计会有人开其它的case doing
onverturn;
3) 如果以上都不行,相信国会会有人提案override;也就是会有若干修正案被搞出来。
b********n
发帖数: 38600
t********i
发帖数: 7856
30
当然可以重谈。重谈完了,新条约可以override就条约。
重谈的方式,可以是双方自愿(和平)坐下来谈,也可以是打一架之后再谈。但在重谈
谈出结果之前,旧条约必须履行。
以中英香港问题的三个条约为例:
(1).1842年《南京条约》:割让港岛(以及周围一些岛屿);
(2).1860年《北京条约》:割让九龙;
(3).1898年《展拓香港界址专条》:租借新界99年。1898年07月01日零点——1997年06
月30日23点59分。
土共完整履行了(3)。《中英联合声明》 override (1)(2)。
h******k
发帖数: 15372
31
来自主题: Military版 - 两个飞行员都惊慌失措
奇葩的游戏杆设计。看到美国在F16上用了游戏杆,欧洲人就异想天开地在客机上用,
问题是F16是单人驾驶的,自己随便咋玩都行,而客机上有俩飞行员,而空客又没有游
戏杆的力度协调和反馈的黑科技,于是就把游戏杆都做成独立的傻瓜型的,互相之间没
有任何反馈。要想得到优先权override另外一个人的操作,必须在前面板上专门按个
override按钮。
然后当两个游戏杆冲突动作不一致时,空客的码农就把它设计成失效操作,也就是电脑
谁的都不听,继续维持执行冲突之前的指令。。。
飞机就失控了。。。
z***t
发帖数: 10817
32

中国人不配拥有海外资产
最近刚换汇 中行号称手机app免费搞 但有无数坑
在中国 人治override法治 人治override科技
s***h
发帖数: 487
33
不可能不能 override


: 这种系统不能override??

u***r
发帖数: 4825
34
https://www.rt.com/op-ed/484298-east-west-war-coronavirus/
27 Mar, 2020 16:21
Asian democracies like South Korea, Japan and India are doing a better job
than Europe and the US in combating the coronavirus pandemic. Deep social
divisions and poor leadership in the West are just two of the reasons.
Even as the coronavirus has spread like wildfire to 199 countries and
territories around the world, a pattern of differential extent of
devastation is evident. The list of worst affected countries with ... 阅读全帖
t*****r
发帖数: 543
35
安全期
拔出
避孕环
避孕药
Global condom shortage? 5 alternative contraceptive methods to consider
Here are 5 alternative contraceptive methods to consider.
A global condom shortage might be looming after a coronavirus lockdown
forced the world’s biggest supplier to shut down production for more than a
week.
Here is everything we know about the situation.
Lockdown: decrease in condom supply
Malaysia’s Karex Bhd makes one out of every five condoms worldwide,
including for brands such as Durex, which supplies... 阅读全帖
m******1
发帖数: 19713
36
来自主题: QueerNews版 - New Jersey议员提交同性婚姻提案
New Jersey议员提交同性婚姻提案
Lawmaker Raises Marriage Equality Bill in New Jersey
By Lucas Grindley
CHRIS CHRISTIE AND ANDREW CUOMO (GETTY) ADVOCATE.COM
OPPOSITES: Chris Christie, Andrew Cuomo
One New Jersey lawmaker is looking at the neighboring state of New York and
wondering, Why can’t we do that?
Democratic assemblyman Reed Gusciora, who is New Jersey’s only openly gay
lawmaker, Monday introduced a marriage equality bill — A4130.
"They’re talking about it in New York," Gusciora told NJ.com. "Why are... 阅读全帖
g********d
发帖数: 4174
37
来自主题: QueerNews版 - N.J. Senate Passed Marriage Equality Bill
Posted on Advocate.com February 13, 2012 10:35:00 AM ET
N.J. Senate to Vote on Marriage Equality Bill
By Julie Bolcer
NEW JERSEY STATE HOUSE (SCOTT MCPHERSON) | ADVOCATE.COM
The New Jersey state senate is expected to make history Monday when it
passes the marriage equality bill for the first time, but a promised veto
from Governor Chris Christie means that advocates could be waiting a long
time to see the bill become law.
The senate will debate the bill and vote this afternoon, followed by an
as... 阅读全帖
b*****d
发帖数: 61690
38
yes. Veto-proof.
Veto-proof describes those votes with a margin sufficient to override a veto, should it occur.
Since a 2/3 vote is required to override, a veto-proof majority is 290 in the House and 67 in the Senate.
l****z
发帖数: 29846
39
Christie Veto Shuts Down Abortion Clinics in NJ
Part of Gov. Chris Christie’s belt-tightening plan for New Jersey was the
termination of $7.5 million in public funding for Planned Parenthood clinics
in the state, a decision Democrats in the legislature countermanded with a
bill that cleared the Senate with a 30-10 vote — sufficient to override a
veto. But when that veto came and the Democrats scheduled an override vote,
Republicans in the legislature backed down, and the measure failed 23-17.
No
C*******r
发帖数: 10345
40
Welfare Reform as We Knew It
It's hard to remember now, but this summer Mitt Romney opened a useful
debate about "dependency"—concerning President Obama's regulation to
rewrite the 1996 welfare reform. Democrats deny any such intent, but as
early as this week the House plans to hold a vote to override the new rule.
So it's a good moment to dissect what the Administration is really trying to
do, because in this case Mr. Romney is right: The Administration has made
welfare's work requirements far ... 阅读全帖
l****z
发帖数: 29846
41
94:0,参议院一致投票反对奥巴马的否决,要求加强对伊朗流氓政权的经济制裁
Senate Votes 94-0 to Override Obama on Iran Sanctions
The Senate approved new economic sanctions on Iran on Friday, overriding
objections from the White House that the legislation could undercut existing
efforts to rein in Iran’s nuclear ambitions.
The Senate voted 94-0 to impose additional U.S. financial penalties on
foreign businesses and banks involved in Iran’s energy, ports, shipping and
shipbuilding sectors, and impose sanctions on metals trade with Ir... 阅读全帖
m**c
发帖数: 7299
42
来自主题: USANews版 - 这是一个振奋人心的消息!
让那些为了讨好变态人渣而贪赃枉法的人渣也想一想天理报应.
Impeach Chris Piazza? Look who's talking
Posted by Max Brantley on Sun, May 11, 2014 at 7:27 AM
Some elements of the Arkansas legislature Crackpot Caucus emerged Saturday
to talk of impeaching Pulaski Circuit Judge Chris Piazza for his ruling
striking down the state ban on same-sex marriage. It would be easy to laugh
this off as meaningless political posturing except that it comes from
towering hypocrites who illustrate broad disrespect for the rule of the law
in the... 阅读全帖
l****z
发帖数: 29846
43
Published on CNS News http://www.cnsnews.com
Menendez Is 2nd Dem to Oppose Iran Deal: ‘Hope…Is Not a National Security
Strategy’
(CNSNews.com) – Twelve days after Sen. Chuck Schumer (D-N.Y.) became the
lone Democratic senator to declare opposition to the administration’s Iran
nuclear agreement, a second senior Democrat has joined him, with Sen. Robert
Menendez (D-N.J.) announcing Tuesday that he too will vote against the deal.
In a speech [1] laying out in detail his reasons for opposing the J... 阅读全帖
l****z
发帖数: 29846
44
强制刹车没有看到? 就是人没有刹车的情况下可以override. 那么hack后很可能
override人的刹车阿
w*******2
发帖数: 2199
45
hack后怎么override人的刹车?
AI设定的是强制刹车能override人继续开而不刹车的情况
被破解了,也就是这个功能失效了而已,人想继续开没法强制停车罢了
怎么就转进到破解后,人工也不能刹车了?
你概念很混乱啊
l********y
发帖数: 543
46
行,你强制停车以后,这车被后面的车撞了。后面车上的人受伤了。起诉做这车ai的公
司。


: hack后怎么override人的刹车?

: AI设定的是强制刹车能override人继续开而不刹车的情况

: 被破解了,也就是这个功能失效了而已,人想继续开没法强制停车罢了

: 怎么就转进到破解后,人工也不能刹车了?

: 你概念很混乱啊


发帖数: 1
47
网民就是瞎激动,搞不清楚事实就瞎激动。这件事情第一个要注意的细节是:是医院首
先向法院提出申请,要求拔管。看到这点后第一个要问的问题就是:为何医院要做这么
冷血的事?(阴谋论的省钱理论就不必了。)
我看到的所有新闻报道都没有提到孩子活的痛苦,只有在(初审)判决书里提到。法官
在 23 页的判决书里记录了好几位专家证词,提到病人的病情。我不是医学专家,我的
了解是孩子经常发生全身癫痫性的痉挛,还有几次细菌感染的肺炎,抽水等等。
孩子不是你们想像得安安静静地躺在那里,然后医院冷血拔管。医院提告的动机就是看
不下去继续治疗的痛苦,医院不愿延长孩子的受苦。
初审判决书如下,自己去读别问我要摘要,我看不懂:
https://www.judiciary.gov.uk/wp-content/uploads/2018/02/alder-hey-v-evans.
pdf
孩子的权益才是重点,父母如果不能做出最好的决定,就必须由其他人接手。至于父母
的决定是不是最好,那是法院说了算,法院 override 父母权这是美国常例,不用激动
。别说法院,连路人看到打孩子都可以打电话报警,那也是一种出于保护孩子而... 阅读全帖
a****r
发帖数: 1486
48
现在哪些车是刹车override油门?一般也就override巡航而已。
c******n
发帖数: 5697
49
刹车要设计成overide油门真的好吗?
如果你车子brake有问题堵住了, 你危险情况下根本没法加速了, 万一后面有车撞上来
你就完了
而且这个override没有fail safe, 不可以靠换档什么的解决
喜欢brake override都是傻逼!
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)