请全职高手邀请赛解释,这个可以实现吗

扫二维码下载作业帮
3亿+用户的选择
下载作业帮安装包
扫二维码下载作业帮
3亿+用户的选择
问两个英语问题!请高手解释解释~为什么有时用it is Mary,而不是she?难道it也可以做像this这样的指示代词?这种用法一般在什么场合?什么时候用They are Mary and Pete,什么时候用It is Mary and Pete?(这种用法好像见过,有木有?)请不要乱编,希望能解释清楚,谢谢高手们!
作业帮用户
扫二维码下载作业帮
3亿+用户的选择
It is ...that这个句型是做强调句的.翻译成“正(就)是玛丽.” ,可以用this is Mary,或that is mary,但没有强调意味,翻译“这是玛丽,”或“那是玛丽”.另外一种情况是,也许你们远远的没有看清楚是男是女,就用it.而后面,如果你要用的话,可以说it is Mary and Peter that.强调“正是玛丽和皮特做了." 还有例子是It is dogs that help people.
为您推荐:
其他类似问题
It is Mary and Pete 绝对错 怎么着也是俩人 复数。。it is Mary一般用于答语 上句有人问who did sth.?之类 翻译成--是Mary(做的)she is Mary 就是单只--她就是M
IT IS MARY 这个一般用在接听电话的时候对方问你你是谁,然后你可以说 it's me ,it' mary .she is mary 这个语法没有错,句子也是通的,可以用作介绍朋友时用,比如你要把MARY介绍给你的另一个朋友,那就可以对小明说she is mary It is Mary and Pete?肯定是错的,IT为第三人称单数,只能用THEY,第三人称复数,因为M...
由于我以前英语语法薄弱,所以现在学习遇到一些似是而非的问题希望大家能帮帮1.理解为“当你感到耳朵很烫的那个特定时候,别人正在说你的坏话”,所以用
扫描下载二维码请高手解释一下这断代码,及this的这些语法解决办法 - J2SE当前位置:& &&&请高手解释一下这断代码,及this的这些语法解决办法请高手解释一下这断代码,及this的这些语法解决办法www.MyException.Cn,网友分享于:&&&浏览:13次请高手解释一下这断代码,及this的这些语法class Person { public void eat(Apple apple) {
Apple peeled = apple.getPeeled();
System.out.println(&Yummy&); }}class Peeler { static Apple peel(Apple apple) {
}}class Apple { Apple getPeeled() { return Peeler.peel(this);
}}public class PassingThis { public static void main(String args []) {
new Person().eat(new Apple()); }}------解决方案--------------------Java codeclass Apple {
Apple getPeeled() { return Peeler.peel(this);
------解决方案--------------------Java code
//这个类抽象的表示人
class Person {
//有eat方法,就是人可以吃,参数是类Apple,也就是这个人吃苹果
public void eat(Apple apple) {
//在吃之前要先得到削皮了的苹果
Apple peeled = apple.getPeeled();
//然后就是输出
System.out.println(&Yummy&);
//这个类抽象的表示一个削皮器
class Peeler {
//有个静态方法,也就是不用new这个对象,就可以调用此方法,即削皮
//参数是Apple苹果,其实最好在里面能处理下,把苹果中添加个是否削皮了的字段,
//调用过此方法后,把这个标志符成true
static Apple peel(Apple apple) {
//返回一个被削皮的苹果
//抽象的表示苹果
class Apple {
//有了苹果,就可以得到削皮的苹果
//没有苹果,那么也就不能得到削皮的苹果
//所以这个方法不能是static的
//方法的实现是调用削皮器进行削皮,
//参数就是它自己(当前对象),也就是this,this就是苹果Apple类的对象。
Apple getPeeled() { return Peeler.peel(this);
public class PassingThis {
public static void main(String args []) {
//生成一个人,去吃苹果
new Person().eat(new Apple());
------解决方案--------------------火龙果正解..
------解决方案--------------------搞了半天不就是做了Apple peeled =apple这句话嘛……被耍了。Java codeclass Person {
public void eat(Apple apple) {
Apple peeled = apple.getPeeled(); //(3)调用apple.getPeeled方法,(5)将返回的apple对象的引用赋值给这个新的Apple对象 peeled
System.out.println(&Yummy&); //(6)打印yummy
System.out.println(apple);
System.out.println(peeled);//(7)你打印出来看看,一样的。
class Peeler {
static Apple peel(Apple apple) {
//(5)返回apple对象
class Apple {
Apple getPeeled() { return Peeler.peel(this);} //(4)调用Peeler.peel方法,参数this就是这个apple对象
public class Poor {
public static void main(String args []) {
new Person().eat(new Apple()); //(1)new了个Apple对象,new了个Person对象(2)调用.eat方法
------解决方案--------------------很有意思的代码,感觉Person被耍了,Peeler只是把得到的苹果原样返回了。不过只要稍加扩展就可以,如:Java codeclass Person {
public void eat(Apple apple) {
Apple peeled = apple.getPeeled();
if (peeled instanceof Peeler.PeeledApple)
System.out.println(&Yummy&);
throw new Peeler.UnpeeledException();
class Peeler {
// 削皮器自己管理一个“削了皮的苹果”类PeeledApple和一个UnpeeledException异常类
static class PeeledApple extends Apple {
PeeledApple(Apple apple) {
static class UnpeeledException extends
static Apple peel(Apple apple) {
return new PeeledApple(apple);
class Apple {
Apple getPeeled() {
return Peeler.peel(this);
public class PassingThis {
public static void main(String args[]) {
new Person().eat(new Apple());
------解决方案--------------------mark
------解决方案--------------------看看..
------解决方案--------------------学习中~~~
------解决方案--------------------写这种程序的目的是啥啊? 锻炼思维?
有种故意把简单的问题弄复杂的感觉 , 哎 不过还是学习下
------解决方案-------------------- 共&2&页:
相关解决方案暂无相关解决方案 12345678910
12345678910
12345678910 上一篇:下一篇:Copyright & &版权所有大家都在搜:
扫描二维码安装房天下APP
手机浏览器访问房天下
> > 问题详情
请各位高手给做一下这道英语题
请各位高手给做一下这道题并给解释一下你所选答案的原因,谢谢了!
浏览次数:0
很遗憾的告诉各位回答问题的“高手”,你们的解释是错误的。答案是B。很简单,remain是个系动词,seated是形容词意为“坐着”,这里是简单的系表结构。根本没有什么“被动”的意思。选择这个答案的原因更简单,因为只有这个是对的。建议不必追究别的为什么都是错的,费力不讨好。
房天下知识为您分享了一条干货
B.此题考查了remain的用法。remain意为保持某种状态,seated表状态,意为“坐着的”。   remain一词,用法较为复杂,下面将remain的用法归纳如下:   一、 用作联系动词,指某人或某事物仍保持某种状态,意为“仍然;依旧”,“留;呆;住;待”,后面可接名词、代词、形容词、介词短语、分词作表语。   1. 接名词作表语   Peter became a manag...
B.此题考查了remain的用法。remain意为保持某种状态,seated表状态,意为“坐着的”。   remain一词,用法较为复杂,下面将remain的用法归纳如下:   一、 用作联系动词,指某人或某事物仍保持某种状态,意为“仍然;依旧”,“留;呆;住;待”,后面可接名词、代词、形容词、介词短语、分词作表语。   1. 接名词作表语   Peter became a manager, but Jack remained a worker. 彼得成为了一个经理,而杰克仍然是个工人。   It remained a secret. 这仍然是个秘密。   2. 接形容词作表语   Whatever achievements you’ve made, you should remain modest. 无论你取得多么大的成就,你都该保持谦虚。   3. 接介词短语作表语   He had to remain in hospital until he was better. 他不得不一直住院直到身体好些。   4. 接分词作表语   接过去分词作表语,表示主语所处的状态或已经发生的被动动作;现在分词作表语,表示正在进行的主动动作。   The guests came in, but she remained sitting at the desk reading.客人们都来了,但她还坐在写字台旁读书。   As before, he remained unmoved. 他和以往一样无动于衷。   二、用作不及物动词,意思是“剩下;剩余;遗留”,此时不能用进行时态,也没有被动语态。   After the fire, very little remained of his house. 火灾过后,他的家所剩无几。   After the earthquake, very little remained of the city of Tangshan. 地震过后,唐山这座城市所剩无几。   三、指某事“尚待、有待于以后被处置”,后面常接不定式的被动形式,表示主语是不定式的承受者。   Many problems remain to be solved. 有好多问题尚待解决。   It remains to be seen whether you are right. 你是否正确,以后见分晓。   四、remain作名词   remain作名词时表示“剩余物”,一般用其复数形式。例如:   The archeologists found some remains of the Song Dynasty.考古学家发现了一些宋代遗迹。   五、remaining的用法   remaining是形容词,意为“剩余的”,常作前置定语;而left则只能作后置定语。例如:   There are still some apples left. 还剩余一些苹果。   I bought a gift for her with the remaining money. 我用剩余的钱给她买了一件礼物。
B. 理由同上
选B,seat使就座,所以这里是被动,用过去分词sit的话就sittingto do是不定式,最常见的是表目的,也表示将来请保持就座;谁得奖马上就要被公布了。remain作系动词,意为保持
remain 为系动词 后面只跟名词或形容词seated 形容词 表状态所以应该选B吧
手机动态登录
请输入用户名/邮箱/手机号码!
请输入密码!
没有房天下通行证,
ask:2,asku:0,askr:28,askz:16,askd:65,RedisW:0askR:8,askD:0 mz:hit,askU:0,askT:0askA:10
Copyright &
北京拓世宏业科技发展有限公司
Beijing Tuo Shi Hong Ye Science&Technology Development Co.,Ltd 版权所有
违法信息举报邮箱:

我要回帖

更多关于 全职高手邀请赛同人文 的文章

 

随机推荐