田静每日长难句分析

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

相关文章

慢sql提前分析预警和动态sql替换-Mybatis-SQL

《慢sql提前分析预警和动态sql替换-Mybatis-SQL》为防止慢SQL问题而开发的MyBatis组件,该组件能够在开发、测试阶段自动分析SQL语句,并在出现慢SQL问题时通过Ducc配置实现动... 目录背景解决思路开源方案调研设计方案详细设计使用方法1、引入依赖jar包2、配置组件XML3、核心配

Java NoClassDefFoundError运行时错误分析解决

《JavaNoClassDefFoundError运行时错误分析解决》在Java开发中,NoClassDefFoundError是一种常见的运行时错误,它通常表明Java虚拟机在尝试加载一个类时未能... 目录前言一、问题分析二、报错原因三、解决思路检查类路径配置检查依赖库检查类文件调试类加载器问题四、常见

Python中的Walrus运算符分析示例详解

《Python中的Walrus运算符分析示例详解》Python中的Walrus运算符(:=)是Python3.8引入的一个新特性,允许在表达式中同时赋值和返回值,它的核心作用是减少重复计算,提升代码简... 目录1. 在循环中避免重复计算2. 在条件判断中同时赋值变量3. 在列表推导式或字典推导式中简化逻辑

Java程序进程起来了但是不打印日志的原因分析

《Java程序进程起来了但是不打印日志的原因分析》:本文主要介绍Java程序进程起来了但是不打印日志的原因分析,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Java程序进程起来了但是不打印日志的原因1、日志配置问题2、日志文件权限问题3、日志文件路径问题4、程序

Java字符串操作技巧之语法、示例与应用场景分析

《Java字符串操作技巧之语法、示例与应用场景分析》在Java算法题和日常开发中,字符串处理是必备的核心技能,本文全面梳理Java中字符串的常用操作语法,结合代码示例、应用场景和避坑指南,可快速掌握字... 目录引言1. 基础操作1.1 创建字符串1.2 获取长度1.3 访问字符2. 字符串处理2.1 子字

Python 迭代器和生成器概念及场景分析

《Python迭代器和生成器概念及场景分析》yield是Python中实现惰性计算和协程的核心工具,结合send()、throw()、close()等方法,能够构建高效、灵活的数据流和控制流模型,这... 目录迭代器的介绍自定义迭代器省略的迭代器生产器的介绍yield的普通用法yield的高级用法yidle

C++ Sort函数使用场景分析

《C++Sort函数使用场景分析》sort函数是algorithm库下的一个函数,sort函数是不稳定的,即大小相同的元素在排序后相对顺序可能发生改变,如果某些场景需要保持相同元素间的相对顺序,可使... 目录C++ Sort函数详解一、sort函数调用的两种方式二、sort函数使用场景三、sort函数排序

kotlin中const 和val的区别及使用场景分析

《kotlin中const和val的区别及使用场景分析》在Kotlin中,const和val都是用来声明常量的,但它们的使用场景和功能有所不同,下面给大家介绍kotlin中const和val的区别,... 目录kotlin中const 和val的区别1. val:2. const:二 代码示例1 Java

Go标准库常见错误分析和解决办法

《Go标准库常见错误分析和解决办法》Go语言的标准库为开发者提供了丰富且高效的工具,涵盖了从网络编程到文件操作等各个方面,然而,标准库虽好,使用不当却可能适得其反,正所谓工欲善其事,必先利其器,本文将... 目录1. 使用了错误的time.Duration2. time.After导致的内存泄漏3. jsO

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3