• The myth that Yeats takes up is of Zeus's rape of the maiden, Leda, whom he attacks as a swan.

    叶芝此诗神话原型是,宙斯强暴了一个美女,丽达,宙斯变成天鹅侵犯了她。

    耶鲁公开课 - 现代诗歌课程节选

  • He was in the movie. He was featured in the movie "A Beautiful Mind".

    有个电影是以他为原型,叫《美丽心灵》。

    知道约翰·纳什吗? - SpeakingMax英语口语达人

  • If you scroll back up on the printout or screen here, you'll see that you can actually not only declare function's prototypes, their general structure.

    如果我回滚到打印输出或者这个屏幕,你们将看到你们不仅可以声明函数的原型,它们一般结构。

    哈佛公开课 - 计算机科学课程节选

  • So clearly it's an old story and we have even older prototypes for elements of the story as well.

    证明,这是一个古老故事,我们甚至可以找到更古老故事原型

    耶鲁公开课 - 旧约导论课程节选

  • and it is the matrix of all future political ideas and arguments in the Greek world that comes after this time.

    这也是希腊社会此后政治理念,和政治主张的原型

    耶鲁公开课 - 古希腊历史简介课程节选

  • If Milton's true muse, or so he hopes or so he wants us to believe, has a Christian origin, then this counter-muse is unquestionably classical.

    如果弥尔顿他望或想要我们相信,他真正缪斯女神,有一个基督教的原型,那么这位与缪斯女神相对人物毫无疑问是经典

    耶鲁公开课 - 弥尔顿课程节选

  • We can say today that this university is a direct ancestor of the platonic republic of Plato's Academy.

    我们可以说现今这间大学直系原型,即是,“柏拉图学院“,柏拉图式理想国。

    耶鲁公开课 - 政治哲学导论课程节选

  • Here in functions prototype it just means the address of.

    这个函数原型中,它指意思地址。

    哈佛公开课 - 计算机科学课程节选

  • What's the prototype of a function?

    什么是一个函数的原型呢?

    哈佛公开课 - 计算机科学课程节选

  • Who is Machiavelli but an archetypal, unarmed prophet?

    谁是马奇亚维利,除了是一名原型非武先知之外?

    耶鲁公开课 - 政治哲学导论课程节选

  • Now because among its contents is the prototype for print F, that is why, very simply, I can call print F without having to declare its prototype myself.

    现在因为在它内容中是printf的原型,这就是为什么我可以不声明printf函数的原型,而可以调用它。

    哈佛公开课 - 计算机科学课程节选

  • As an aside, why are you able to use print F without writing out a prototype for it?

    此外,为什么我们不用写printf函数原型,而可以使用它呢?

    哈佛公开课 - 计算机科学课程节选

  • Right. So main calls foo, foo is declared, but wait a minute, void foo void I need my prototype; so void foo, void.

    对,main调用foo,foo被声明了,但是等一等,我需要我的原型,所以。

    哈佛公开课 - 计算机科学课程节选

  • It's a little redundant, admittedly, but I include not the same function, but just its prototype, as I say in the comment here.

    它确实是有点长,但是我包含不是同一个函数,而只是一个原型,就像我这里注释所说

    哈佛公开课 - 计算机科学课程节选

  • Now, one of the earliest -- and I think this is a remarkable fact - one of the earliest citations of Paradise Lost that actually appears in print in the seventeenth century comes from the proto-feminist writer Lady Mary Chudleigh.

    最早--我认为这很重要,-17世纪最早以印刷形式出现,对《失乐园》引用,来自于原型女性主义作家玛丽·恰德莱夫人。

    耶鲁公开课 - 弥尔顿课程节选

  • My prototype, again, so that I can use it later increment without the compiler wondering what is this increment that you're referring to because it's not otherwise been declared.

    函数原型,再次强调,我可以以后使用它,这样编译器就不会疑惑这个你提及,是什么,因为是没有,被声明

    哈佛公开课 - 计算机科学课程节选

  • The prototype is just its return value, its name, and its arguments, if any.

    原型就是他返回值,它名字,它参数之类

    哈佛公开课 - 计算机科学课程节选

  • The only thing that you have to put in the function prototype, ; again, is three things; one, the name of the function; the return value; and its arguments.

    你唯一要加入到函数原型东西,是有三个东西,一,函数名字;,返回值,和它参数。

    哈佛公开课 - 计算机科学课程节选

  • I have to change the prototype of this function to say that swap no longer takes an int per se or another int per se, but rather it takes two pointers, two ints, and in fact, it's on the very last page if you're still flipping.

    我改变了这个函数的原型,来说明swap不再携带那两个int数本身,而是携带两个指针,两个整型数指针,实际上,它是在最后那页上。

    哈佛公开课 - 计算机科学课程节选

  • And now the point just to tease apart, I can't erase that, let's fix, so now the one detail that's worth pointing out is * that this here the * in swap's prototype and the * here in swap's prototype do not mean go there.

    现在我们要梳理一下,我不能清除那个,让我们修正一些,需要指出一个细节是,在swap原型,意思不是定位到那个地方。

    哈佛公开课 - 计算机科学课程节选

  • It may mean something different and this is sort of just stupid re-use of syntax although frankly it wouldn't really be much fun to have yet a symbol so they went with the same symbol which is pretty reasonable in the context *a of a function prototype this just means *a expect A to be the address of an int and expect B to be the address of an int.

    这里意思有点不同,这是为了重使用,虽然这个符号没有什么意义,所以在函数原型中,他们就使用了相同符号,这只是表示,期望,是一个int型地址,期望b是一个int型地址。

    哈佛公开课 - 计算机科学课程节选

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定