田静每日长难句分析

2024-01-28 18:48
文章标签 分析 每日 难句 田静

本文主要是介绍田静每日长难句分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

2020/5/24

一、长难句 

Now the nation's top parent court appears completely ready to scale back on bussiness-method patents, which have been controversial ever since they were first authorized 10 years ago.

二、分析思路

2.1  标点与连接词断开句子

Now the nation's top parent court appears completely ready to scale back on bussiness-method patents ,which have been controversial ever since they were first authorized 10 years ago.

2.2  简化主句

  • 去掉副词、冠词、名词所有格、形容词后得到主语parent court
  • 去掉修饰谓语的副词后得到谓语appears ready
  • 补语to scale back
  • 去掉介词短语
  • 得到主句parent court appears ready to scale back.

2.3  填充主句

  • 将修饰词或介词短语等融入子句

2.4  分析从句

  • 第一个为定语从句,就近原则,修饰前面的名词
  • 第二句为时间状语从句

2020/5/26

一、长难句 

Curbs on business-method claims would be a dramatic about-face,because it was the Federal Circuit itself that introduced suck patents with 1998 decision in the so-called State Street Bank case,approving a patent on a way of pooling mutual-fund assets.

二、分析思路

2.1  标点与连接词断开句子

Curbs on business-method claims would be a dramatic about-face,because it was the Federal Circuit itself that introduced suck patents with 1998 decision in the so-called State Street Bank case,approving a patent on a way of pooling mutual-fund assets.

2.2  简化主句

  • 这个主句很简单,没什么要简化的

2.3  填充主句

  • 没什么好填充的

2.4  分析从句

  • it was ... that ... 这是强调句式,去掉it was ... that ... 不影响句意
  • ,approving即逗号+doing这是修饰整个句子的标志,表示这个句子主语(the Federal Circuit)进行的动作

2020/5/30

一、长难句 

The Federal Circuit issued an unusal order stating that the case would be heard by all 12 of the court's judges,rather than a typical panel of three,and that one issue it wants to evaluate is whether it should "reconsider" its State Street Bank ruling.

二、分析思路

2.1  标点与连接词断开句子

The Federal Circuit issued an unusal order stating that the case would be heard by all 12 of the court's judges,rather than a typical panel of three,and that one issue it wants to evaluate is whether it should "reconsider" its State Street Bank ruling.

2.2  简化主句

  • 主语The Federal Circuit
  • 谓语issued
  • 宾语order
  • 非谓语动词stating遵循就近原则,修饰order

2.3  填充主句

  • 将修饰词或介词短语等融入子句

2.4  分析从句

  • that the case ... 挨着stating(动词陈述),动宾关系,是宾语从句
  • ,and 表示并列,前面的that从句跟着stating,那么and后的也要跟着,这对分析句子结构极其重要
  • that one issue it wants to evaluate is whether it should "reconsider" its State Street Bank ruling.这是主主谓谓结构,那么it wants to do表示定语从句

2020/6/1

一、长难句 

In his book The Tipping Point,Malcolm Gladwell argues that "social epidemics" are driven in large part by the actions of a tiny minority of special individuals,often called influentials,who are unusually informed,persuasive,or well connected.

二、分析思路

2.1  标点与连接词断开句子

In his book The Tipping Point,Malcolm Gladwell argues that "social epidemics" are driven in large part by the actions of a tiny minority of special individuals,often called influentials,who are unusually informed,persuasive,or well connected.

2.2  简化主句

  • 主语Malcolm Gladwell
  • 谓语argues
  • 宾语从句

2.3  填充主句

  • 将修饰词或介词短语等融入子句

2.4  分析从句

  • that "social epidemics" ... 挨着argues,动宾关系,是宾语从句,句子太长,则按照简化和填充主句的方式继续进行
  • who ... 挨着influentials,是定语从句

2020/6/2

一、长难句 

For a social epidemic to occur, however, each person so affected must then influence his or her own acquaintances, who must in turn influence theirs, and so on; and just how many others pay attention to each of these people has little to do with the initial influential. 

二、分析思路

2.1  标点与连接词断开句子

For a social epidemic to occur, however, each person so affected must then influence his or her own acquaintances, who must in turn influence theirs, and so on; and just how many others pay attention to each of these people has little to do with the initial influential. 

2.2  简化主句

  • 主语each person so affected
  • 谓语influence

2.3  填充主句

  • 将修饰词或介词短语等融入子句

2.4  分析从句

  • how many ... 这是一个从句,若到结尾发现有两个谓语动词,那么该从句必然在第二个谓语动词之前结束
  • who ... 定语从句,就近修饰acquaintances
  • how 引出的是主语从句,在has之前做主语

这篇关于田静每日长难句分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/654475

相关文章

MySQL中的LENGTH()函数用法详解与实例分析

《MySQL中的LENGTH()函数用法详解与实例分析》MySQLLENGTH()函数用于计算字符串的字节长度,区别于CHAR_LENGTH()的字符长度,适用于多字节字符集(如UTF-8)的数据验证... 目录1. LENGTH()函数的基本语法2. LENGTH()函数的返回值2.1 示例1:计算字符串

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期

怎样通过分析GC日志来定位Java进程的内存问题

《怎样通过分析GC日志来定位Java进程的内存问题》:本文主要介绍怎样通过分析GC日志来定位Java进程的内存问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、GC 日志基础配置1. 启用详细 GC 日志2. 不同收集器的日志格式二、关键指标与分析维度1.

MySQL中的表连接原理分析

《MySQL中的表连接原理分析》:本文主要介绍MySQL中的表连接原理分析,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、环境3、表连接原理【1】驱动表和被驱动表【2】内连接【3】外连接【4编程】嵌套循环连接【5】join buffer4、总结1、背景

python中Hash使用场景分析

《python中Hash使用场景分析》Python的hash()函数用于获取对象哈希值,常用于字典和集合,不可变类型可哈希,可变类型不可,常见算法包括除法、乘法、平方取中和随机数哈希,各有优缺点,需根... 目录python中的 Hash除法哈希算法乘法哈希算法平方取中法随机数哈希算法小结在Python中,

Java Stream的distinct去重原理分析

《JavaStream的distinct去重原理分析》Javastream中的distinct方法用于去除流中的重复元素,它返回一个包含过滤后唯一元素的新流,该方法会根据元素的hashcode和eq... 目录一、distinct 的基础用法与核心特性二、distinct 的底层实现原理1. 顺序流中的去重

关于MyISAM和InnoDB对比分析

《关于MyISAM和InnoDB对比分析》:本文主要介绍关于MyISAM和InnoDB对比分析,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录开篇:从交通规则看存储引擎选择理解存储引擎的基本概念技术原理对比1. 事务支持:ACID的守护者2. 锁机制:并发控制的艺

MyBatis Plus 中 update_time 字段自动填充失效的原因分析及解决方案(最新整理)

《MyBatisPlus中update_time字段自动填充失效的原因分析及解决方案(最新整理)》在使用MyBatisPlus时,通常我们会在数据库表中设置create_time和update... 目录前言一、问题现象二、原因分析三、总结:常见原因与解决方法对照表四、推荐写法前言在使用 MyBATis

Python主动抛出异常的各种用法和场景分析

《Python主动抛出异常的各种用法和场景分析》在Python中,我们不仅可以捕获和处理异常,还可以主动抛出异常,也就是以类的方式自定义错误的类型和提示信息,这在编程中非常有用,下面我将详细解释主动抛... 目录一、为什么要主动抛出异常?二、基本语法:raise关键字基本示例三、raise的多种用法1. 抛

github打不开的问题分析及解决

《github打不开的问题分析及解决》:本文主要介绍github打不开的问题分析及解决,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、找到github.com域名解析的ip地址二、找到github.global.ssl.fastly.net网址解析的ip地址三