But You Didn't

Remember the day I borrowed your brand new car and dented it?

I thought you'd kill me, but you didn't.

记得那一次,借你的新车,而我却撞凹了它。

我以为你会杀了我,但是你没有。

And remember the time I dragged you to the beatch, and you said it would rain, and it did?

I thought you's say, "I told you so." But you didn't.

记得那一次,我拖你去海滩,而你却说天会下雨,果然下了。

我一会你会说“我已经告诉过你了”, 但是你没有。

Do you remeber the time I flirted with all the guys to make you jealous, and you were?

I thought you'd leave, but you didn't.

记得那一次,我和所有男子挑逗来引起你嫉妒,你嫉妒了。

我以为你会离开,但是你没有。

Do you remember the time I spilled strawberry pie all over your car rug?

I thought you'd hit me, but you did't.

记得那一次,我在你新刷的地毯吐了满地的草莓饼。

我以为你会讨厌我,但是你没有。

And remember the time I forgot to tell you the dance was farmal and you showed up in jeans?

I thought you'd drop me, but you didn't.

记得那一次,我忘记告诉你,那个舞会是要穿礼服的,而你只穿牛仔裤到场。

我以为你必然放弃我啦,但是你没有。

Yes, there were lots of things you didn't do. But you put up with me, loved me, and protected me.

是的,有许多许多的事,你全都没有做。而你容忍我、钟爱我、保护我。

There were lots of things I wanted to make up to you when you returned form Vietnam.

But you didn't.

有许多许多的事我要回报你,等你从越南回来。

但是你没有。

本诗是一位普通美国妇女写给其在越战中阵亡的丈夫的,字句间包含深切的爱意和思念。

为等待丈夫、作者终身守寡,直至去世,其深情感动了无数人。

文中单词
单词 释意
dented adj.凹损的
flirted v.调情,打情骂俏
jealous adj.羡慕的;嫉妒的
rug n.地毯;毯子
spilled v.溢出
dragged v.拖动;打捞
drop vt.放弃;断绝关系
brand n.商标‘牌子’
formal adj.正式的;正规的
strawberry n.草莓

随机推荐

  1. 【Unity3D】用继承EditorUpdater类来实现Editor模式下的后台处理

    EditorWindow类的OnGUI函数只会在窗口焦点处于Editor窗口上的时候才会运行.如果希望焦点不在Editor窗口上的时候,它也能实时更新,可以实现以下方法: OnDestroy OnDe ...

  2. Python 将IP转换为int

    import socket import struct if __name__ == '__main__': ip = '127.0.0.1' int_ip = struct.unpack('!I', ...

  3. IE浏览器与非IE浏览器JS日期兼容性问题处理

    执行语句 console.log(new Date("2017-07-04 18:40").getTime()); 在IE浏览器中打印出:NAN 在非IE浏览器中打印出:14991 ...

  4. 《C#高效编程》读书笔记12-使用推荐成员初始化器而不是赋值语句

    通常来说类都有不止一个构造函数.随着时间推移,成员变量的增加,构造函数的个数也会不断的增加.预防这种情况的最好方法是,在声明变量的时候就进行初始化,而不是在每个构造函数中进行. //初始化变量时声明 ...

  5. agc015E - Mr.Aoki Incubator(dp)

    题意 题目链接 平面上有$n$个点,每个点都有一个位置$x_i$,和向右的速度$v_i$ 现在要求你对其中的一些点进行染色,当一个点被染色后,在无限距离内与它相遇的点也会被染色 问在可能的$2^n$种 ...

  6. mysql数据库初步了解

    一丶数据库服务器丶数据管理系统丶数据库丶表与记录的关系 记录:1 xxxx 3245646546(多个字段的信息组成一条记录,即文件中的一行内容) 表: Student.school,class_li ...

  7. C#利用WebClient 两种方式下载文件(一)

    WebClient client = new WebClient(); 第一种 string URLAddress = @"http://files.cnblogs.com/x4646/tr ...

  8. 如何查看与显示oracle表的分区信息

    显示分区表信息 显示数据库所有分区表的信息:DBA_PART_TABLES 显示当前用户可访问的所有分区表信息:ALL_PART_TABLES 显示当前用户所有分区表的信息:USER_PART_TAB ...

  9. python3基础07(进程操作及执行系统级命令等)

    #subprocess 创建子进程 连接输入 输出 管道错误,及获取他们的状态,可执行操作系统级的命令# subprocess.run(args, *, stdin=None, input=None, ...

  10. 新增自定义聚合函数StrJoin

    1.添加程序集Microsoft.SqlServer.Types CREATE ASSEMBLY [Microsoft.SqlServer.Types] AUTHORIZATION [sys] FRO ...