Green Sleeves

本文解析了经典曲目《绿袖子》的歌词内容及表达的情感,并提供了部分词汇的英语语法解释。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Green Sleeves


Alas, my love, you do me wrong,
To cast me off discourteously.
For I have loved you oh, so long,
Delighting in your company.

Green sleeves was all my joy,
Green sleeves was my delight.
Green sleeves was my heart of gold,
And who but my lady,
Green sleeves.

If you intend to be this way,
It does the more enrapture me.
And even so I still remain
A lover in captivity.

Green sleeves was all my joy,
Green sleeves was my delight.
Green sleeves was my heart of gold,
And who but my lady,
Green sleeves.
Mm Mm...

Green sleeves now farewell adieu,
God I pray will prosper thee,
For I am still thy lover true,
Come once again and love me.

歌词大意


绿袖子
啊,我的爱人,你错待了我,
抛弃了我你无义又无情,
我已经爱上你,啊,这么久,
有你陪伴多高兴。

绿袖子是我快乐的全部,
绿袖子是我全部的欢乐。
绿袖子是我金子般的心,
只有她才是我的心爱人,
绿袖子。

如若你想要这样,
那会使我更高兴。
即使这样我仍会
做一个爱情的俘虏。

绿袖子是我快乐的全部,
绿袖子是我全部的欢乐。
绿袖子是我金子般的心,
只有她才是我的心爱人,
绿袖子。
呣呣……
绿袖子,你要告别离去,
我祈祷上帝为你保佑,
但我还是你的恋人,
回来吧,把我爱恋

歌词、句型分析

 

1.Alas,my love,you do me wrong.


  啊,亲爱的,你错待了我。
  alas(感叹词)(表示痛苦、悲伤或害怕、遗憾、不安的叫声)意为:啊啊;哎呀
  例:Alas,she is gone.
    啊!她走掉了。


2. To cast me off discourteously.


  =To throw me off discourteously.
  抛弃了我你无义无情。
  cast off:抛弃,摆脱,释放。
  discourteously(副词):不礼貌地,失礼地
  discourteously是由形容词courteous加前后缀构成的。
  dis-是个前缀,表示“不”的意思。
  如:dislike,dishonest.


3.delighting in your company.


  =Very glad and happy in your company.
  有你在身边多高兴。
  company(集合名词):伙伴,朋友,同行的人。
4.If you intend to be this way.


  如若你一定要这样。
  intend(及物动词):有意,打算,想造成
  intend to do=intend doing打算。
  例:He intended to have bought the new car.
    他本打算买部新汽车,但却没有买。
  intend to + 完成式的不定式表示企图未能实现的情况。

附:intend
vt.
 1. 想要;打算[+to-v][+v-ing][+(that)][O2]
  He intends his son to manage the company.
  他打算让他儿子经营该公司。
  I intend studying abroad.
  我打算出国留学。
  I intend to study abroad.
  我打算出国留学。
  Let's ask her what she intends us to do.
  让我们问她要我们做什么。
  What do you intend to do today?
  你今天打算做什么?
 2. 打算使...(成为);(为...而)准备[H][(+for/as)][O2]
  That trap is intended for you.
  那个圈套是为你而设的。
 3. 意指,意思是

 
好的,下面是一个简单的 C 语言字典功能的实现示例: ```c #include <stdio.h> #include <string.h> // 定义一个结构体,表示字典中的一个词条 struct Entry { char word[20]; char definition[100]; }; // 定义一个函数,用于在字典中查找给定的单词 void lookup(struct Entry dictionary[], char searchWord[]) { int i; for (i = 0; i < 10; i++) { if (strcmp(searchWord, dictionary[i].word) == 0) { printf("%s\n", dictionary[i].definition); return; } } printf("Sorry, the word is not in the dictionary.\n"); } int main() { // 定义一个字典,包含 10 个词条 struct Entry dictionary[10] = { {"apple", "a round fruit with red, yellow, or green skin and firm white flesh"}, {"banana", "a long curved fruit which grows in clusters and has soft pulpy flesh and yellow skin when ripe"}, {"cat", "a small domesticated carnivorous mammal with soft fur, a short snout, and retractable claws"}, {"dog", "a domesticated carnivorous mammal with a barking voice and a short coat"}, {"elephant", "a very large animal with a long nose called a trunk, used for grasping objects, and two long curved ivory tusks"}, {"fish", "a cold-blooded aquatic vertebrate with scales and gills"}, {"grape", "a small sweet or sour fruit with a thin skin and small seeds"}, {"horse", "a large four-legged animal with a mane and tail"}, {"ice cream", "a cold sweet food made from frozen milk or cream"}, {"jacket", "an outer garment worn by both men and women, typically having sleeves and a fastening down the front"} }; // 从用户输入中读取要查找的单词,然后在字典中查找 char searchWord[20]; printf("Please enter a word to look up: "); scanf("%s", searchWord); lookup(dictionary, searchWord); return 0; } ``` 在这个例子中,我们定义了一个结构体 `Entry`,表示字典中的一个词条,包含一个单词和一个定义。然后我们定义了一个函数 `lookup`,接受一个字典数组和一个要查找的单词,用于在字典中查找给定的单词。在 `lookup` 函数中,我们使用了 `strcmp` 函数来比较两个字符串是否相等。最后,在 `main` 函数中,我们定义了一个包含 10 个词条的字典数组 `dictionary`,并从用户输入中读取要查找的单词,然后调用 `lookup` 函数在字典中查找。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值