Jessica pulled on my arm.

Jessica拉了一下我的手臂。

"Hello? Bella? What do you want?"I looked down; my ears were hot. I had no reason to feel self-conscious,I reminded myself. I hadn't done anything wrong.

怎么了bella?你想吃点啥,我低下头,我的耳朵红了,我没有理由感到难为情,我提醒我自己。我没有做错任何事情。

"What's with Bella?" Mike asked Jessica.

bella怎么了?mike问Jessica

"Nothing," I answered. "I'll just get a soda today." I caught up to the end of the line.

没事,我回答到,我今天只要一份苏打水。我排到了队伍最后面。

"Aren't you hungry?" Jessica asked.

你不饿吗?jessica问道

"Actually, I feel a little sick," I said, my eyes still on the floor.

事实上我感觉有点生病了,我说道,我的眼睛仍然看着地板。

I waited for them to get their food, and then followed them to a table,my eyes on my feet.

我等他们拿到了他们的事物,然后跟着他们去了桌子,过程中我的眼睛一直盯着我的脚。

I sipped my soda slowly, my stomach churning. Twice Mike asked, with unnecessary concern, how I was feeling.

我慢慢喝着我的苏打水,我的胃搅拌着。mike第二遍问道,在我感觉没有必要的关心。

I told him it was nothing, but I was wondering if I should play it up and escape to the nurse's office for the next hour.

我告诉他没事,但是我想知道是否我应该继续演戏然后逃跑到护士的办公室呆上一个小时。

Ridiculous. I shouldn't have to run away.

荒谬,我不能逃走。

I decided to permit myself one glance at the Cullen family's table. If he was glaring at me, I would skip Biology, like the coward I was.

我决定允许我自己瞟一眼Cullen家庭的桌子,如果他瞟见我,我就会逃掉生物课,就像我是个懦夫一样。

Chapter 2 Open Book——20的更多相关文章

  1. Chapter 1 First Sight——20

    After two classes, I started to recognize several of the faces in each class. 两节课之后,我开始记住了每节课的那几张脸. ...

  2. Chapter 5 Blood Type——20

    "Just let me sit for a minute, please?" I begged. “就让我坐一会可以吗?” 我乞求道. He helped me sit on t ...

  3. css秘密花园

    picture元素 http://www.w3cplus.com/responsive/responsive-images-101-part-6-picture-element.htmlCHAPTER ...

  4. K12(在线学习的平台)

    项目:K12(在线学习的平台) 一.背景 目的是做一个在线的学习平台,提高学生的课程完成度 K12:大目标是要取代线下班 - 录制专门的视频 - 导师的监管:如果没有主动和那个学生聊天,就扣钱 - 学 ...

  5. Chapter 20: Diagnostics

    WHAT'S IN THIS CHAPTER?n Code contractsn Tracingn Event loggingn Performance monitoringWROX.COM CODE ...

  6. 零元学Expression Blend 4 – Chapter 20 以实作案例学习Childwindow

    原文:零元学Expression Blend 4 – Chapter 20 以实作案例学习Childwindow 本章将教大家如何运用Blend 4内建的假视窗原件-「ChildWindow」 Chi ...

  7. MySQL Crash Course #11# Chapter 20. Updating and Deleting Data

    INDEX Updating Data The IGNORE Keyword Deleting Data Faster Deletes Guidelines for Updating and Dele ...

  8. Chapter 20 Treatment-Confounder Feedback

    目录 20.1 The elements of treatment-confounder feedback 20.2 The bias of traditional methods 20.3 Why ...

  9. Chapter 4 Invitations——20

    Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...

随机推荐

  1. C#变量修饰符

    访问修饰符 关键字包括:internal,public,protected和private,用于设置变量的访问级别.  public  变量可以做为它所属的类型的一个字段,可以在任何地方访问它.  i ...

  2. C# lesson1

    一.C#和.net平台 .net是一个软件,一个平台(一般在windows自带 或者在vs里面已经有了) C#是一门运行在.net平台上的语言,需要编译:C#经过.net framework里面的编译 ...

  3. Hibernate5-课程笔记6

    Hibernate检索优化: 检索即查询.为了减轻DB的访问压力,提高检索效率,Hibernate对检索进行了优化. 所谓检索优化,指的是对查询语句的执行时机进行了细致.严格的把控:并不是代码中一出现 ...

  4. handler消息机制

    MessageQueue代码:http://grepcode.com/file_/repository.grepcode.com/java/ext/com.google.android/android ...

  5. git 第一次 push 遇到问题

    开始用 git 的时候我只会 git clone git pull git push 这三个命令满足了我的基本需求,到自己创建仓库的时候遇到了问题, git remote add origin htt ...

  6. ajaxFileUpload 报这错jQuery.handleError is not a function

    今天刚打个一个技术群,里面有人问标题上的问题,嘿,我恰好遇过,现在大家至少也在用jquery1.9以上的版本,ajaxfileupload的版本早就不更新了,大家可以下载看:地址这里, 它例子里使用的 ...

  7. PHP验证码程序

    [摘自网络,参考学习] <?php/** * vCode(m,n,x,y) m个数字 显示大小为n 边宽x 边高y * http://blog.qita.in * 自己改写记录session $ ...

  8. Java 泛型 协变式覆盖和泛型重载

    Java 泛型 协变式覆盖和泛型重载 @author ixenos 1.协变式覆盖(Override) 在JDK 1.4及以前,子类方法如果要覆盖超类的某个方法,必须具有完全相同的方法签名,包括返回值 ...

  9. 5. Java反射机制

    Java反射机制   问题: 在运行时,对一个JAVA类,能否知道属性和方法:能否调用它的任意方法? 答案是可以的,JAVA提供一种反射机制可以实现. 目录 什么是JAVA的反射机制 JDK中提供的R ...

  10. Bootstrap介绍

    Bootstrap是基于HTML.CSS和JavaScript开源的前端开发工具包. 1.响应式布局: 效果:根据浏览器的宽度来调整页面布局. 例如: <html lang="en&q ...