怎么判断second period前要不要加the?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么判断second period前要不要加the?相关的知识,希望对你有一定的参考价值。

怎么判断second period前要不要加the?是不是说之前没提到,第一次提及可以不加;前面提过了,再次提到就要加the呢?请问这样理解对吗?

一般second period前都是要加上the的,无论之前是否有提过。因为second是形容词,形容词配上名词的短语前面一般要加a,an或者the。而second period只适合用the,因为second是序数词。

定冠词the的用法:
用在表示方向,方位的名词前
the east 东方;the west 西方;the right 右边;the left 左边
注意:方位词成对使用构成平行结构时,不用定冠词。
The river is two thousand miles long from east to west.

用在序数词前
定冠词用在序数词前,也用在表示序列的next, last 等前,还有表示“同一”或“唯一”的词前。如:
He is the only person who knows the secret.他是唯一知道这个秘密的人。
This is the very book I want. 这正是我要的书。(用very 表示强调)
注意:序数词表示“又一”时,前面用不定冠词 a/an。
He bought a second pair of shoes. 他又买了一双鞋。

用在乐器名词前,表示演奏
She can play the piano/violin/guitar.
用在江河,海洋,湖泊,群岛,山脉的名称前
the Yangtze River 长江; the West Lake 西湖;the Pacific 太平洋;the Rocky Mountains落基山脉

用在普通名词和另外一些词构成的专有名词前
the Great Wall 长城;the United Nations 联合国;the New York Times 《纽约时报》
用在某些形容词前表示一类人或物或某种抽象概念。
The old 老年人;the poor 穷人;the beautiful 美的东西
注意:表示人的时候做主语,应看成复数意义;当表示物的时候应看成不可数意义。

用在姓氏的复数形式前,表示全家人,夫妇二人。
The Greens will move to the country.格林一家要搬到乡下去。
用在表示计算单位的名词前,含有“每一”的意思。
John is paid by the hour. 吉母的工资按小时付。

用在前面已提到的人的身体部位或衣着的名词前。
这种用法是先把整个对象说出来,然后再说到那个对象身体的局部或衣着。
动词(hit,pull,pat,strike,catch,hold,take,lead)+sb介词(in,on,by,across)+身体部位或衣着
She touched him on the shoulder. 她碰了他的肩。
注意:She patted the boy on his head. (误,本结构中身体部位或衣着前不用one\'s)
She patted the boy on the head. (正)

用在逢十的复数数词前,表示年代
The war broke out in the forties. 那场战争发生在40年代。
用在表示自然现象的名词前
the rain; the wind; the fog; the snow; the air
注意:①这类名词有形容词修饰时,可用不定冠词,表示“一场,一阵,一种”。
There was a heavy rain last night. 昨晚下了一场大雨。
②这类名词表示一般物质时,不用冠词。
Man can not live without air. 没有空气人无法生存。

用在某些习惯用语中
in the morning; in the evening; in the field ; in the country; in the sun; in the distance; on the right; by the way; in the daytime; go to the concert; at the beginning ; all the year round;等等。
注意:下面几个短语前不加定冠词:
at dawn 在黎明 at night 在晚上 at noon 在正午
at dusk 在黄昏
参考技术A 一般上second period前都是要加上the的 无论之前是否有提过 因为second是形容词 形容词配上名词的短语前面一般要加a,an或者the 比如说a big house 或the big house不能单独使用big house 而second period只适合用the本回答被提问者和网友采纳 参考技术B 都要加呀,序数词前加the

JavaScrip要不要加分号";"

 

JavaScript 和后来新设计的语言里都是可以加也不不加分号的:Go, Scala, Ruby, Python, Swift, Groovy..

总结下来就是一句话:一行开头是括号或者方括号的时候加上分号就可以了,其他时候全部不需要, 但是这种情况也是很少的.

例如: 

//db.js
console.log(‘run db.js‘)

var url = "mongodb://localhost:27017/vue-login"
var mongoose = require(‘mongoose‘)
mongoose.connect(url, { useNewUrlParser: true }, (err) => {
    if (err) {
        console.log(err)
    } else {
        console.log(‘db connect success‘)
    }
})
改成下面的样子, 也是可以的
//db.js
console.log(‘run db.js‘)var url = "mongodb://localhost:27017/vue-login"var mongoose = require(‘mongoose‘)
mongoose.connect(url, { useNewUrlParser: true }, (err) => {
    if (err) {
        console.log(err)
    } else {
        console.log(‘db connect success‘)
    }
})
 
 

以上是关于怎么判断second period前要不要加the?的主要内容,如果未能解决你的问题,请参考以下文章

c语言中if语句中的else后面的语句要不要加花括号 ?

JMeter之Ramp-up Period(in seconds)说明(可同时并发)

JMeter之Ramp-up Period(in seconds)说明(可同时并发)

i2c 协议中low period of the scl clock不满足是怎么回事

When she was 16, the now-mother visited her doctor,concerned that she had not gotten her period

做表单时总是弹出窗口问要不要加label、要不要加form,请问加不加这些有啥不同?