But You Didn'd【但是你没有】
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.草莓 |
随机推荐
- C# EF 生成1-20随机数,生成10个,不能重复 LINQ写法
, ).Select(x => ).ToList(); foreach (var i in num) { Console.WriteLine(i); } 上面的函数碉堡天了
- 使用 ViS2005 进行单元测试
1. 新建一个空白解决方案,命名为"单元测试- 01"吧. 2.在该解决方案下创建一个类库,作为此次单元测试的测试对象:我们就创建一个数学类(用于实现运算的简单类).命名为&quo ...
- Http请求get、post工具类
在网上找了好久都没有找到post.get请求的工具类,现在整理了一下分享出来.http工具类如下: package com.qlwb.business.util; import java.io.Buf ...
- cf600E. Lomsat gelral(dsu on tree)
题意 题目链接 给出一个树,求出每个节点的子树中出现次数最多的颜色的编号和 Sol dsu on tree的裸题. 一会儿好好总结总结qwq #include<bits/stdc++.h> ...
- Flask蓝图的增删改查
怎样用flask蓝图来实现增删改查呢?请看下面的内容 这是我们的目录结构 从图中可以看出每一个功能都有一个各自的文件夹 首先我们要自己先来创建一个数据,在Flask_data.py中写入如下内容: S ...
- Regexp:常用的几个正则表达式
1.isEmail /** * * @desc 判断是否为邮箱地址 * @param {String} str * @return {Boolean} */ function isEmail(str) ...
- C#cmd执行命令隐藏窗口,并保持程序一直运行
把要执行的cmd命令放入一个bat文件里,然后执行: //Process p = Process.Start(bPath); Process pro = new Process();pro.Start ...
- codeblocks winsock配置
在codeblocks进行Socket编程遇到如下情况: undefined reference to WSAStartup@8 解决方法: 右击工程,选择 build options,选择 Link ...
- IOS plist的数据 存 取(沙河目录)
应用沙盒目录的常见获取方式 沙盒根目录:NSString *home = NSHomeDirectory(); Documents:(2种方式) 1.利用沙盒根目录拼接”Documents”字符串 N ...
- POJ 2010 Moo University - Financial Aid(堆维护滑窗kth,二分)
按照score排序,贪心,从左到右用堆维护并且记录前面的最小N/2个花费之和. 然后从右向左枚举中位数,维护N/2个数之和加上并判断是否满足条件.(stl的队列没有clear(),只能一个一个pop. ...