on后面加什麽
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了on后面加什麽相关的知识,希望对你有一定的参考价值。
on后面加什麽
in 后面加什麽
是加具体时间吗
in后面加季节,年份,早中晚。(如周、月份、季节、年份、世纪等)。
on后面加具体的某一天(如日期、生日、节日或星期几)。
单词解析
1、on
英 [ɒn];美 [ɑn]
adv. 向前地;作用中,行动中;继续着
prep. 向,朝……;关于;在……之上;在……时候
adj. 开着的;发生着的,正在进行中
n. (On)人名;(日)温(姓、名);(缅、柬、印)翁
例:On top of the cupboards are straw baskets.
橱柜顶上是几个草篮子。
例:He is sitting beside her on the sofa.
他正挨着她坐在沙发上。
2、in
英 [ɪn];美 [ɪn]
prep. 按照(表示方式);从事于;在…之内
adv. 进入;当选;(服装等)时髦;在屋里
adj. 在里面的;时髦的
n. 执政者;门路;知情者
n. (In)人名;(中)演(广东话·威妥玛);(柬)殷(用于名字第一节), 因;(日)寅 (名)
例:My roommate was in at the time.
我的室友当时在房间里。
例:She thought of the tide rushing in, covering the wet sand.
她想到潮水涨上来,淹没了潮湿的沙滩。
扩展资料
用法
一、on
1、日期前的on常被省略。
2、注意in与on的使用:on表示“在物体的表面上”,而in表示“在其中”。指能用in的表达方式有in the morning,in the afternoon,in the evening和in the night。
二、in
1、用作介词 (prep.)
例:The telephone was in the little study on the ground floor.
电话在底楼的小书房里。
例:The books are printed in Hong Kong.
这些书在香港印刷。
2、用作副词 (adv.)
例:He is not in at the moment.
这个时候他不在家。
例:He opened the door and stepped in.
他打开门走了进去。
3、用作名词 (n.)
1、The election made him an in.
这次选举使他成为执政者。
2、The businessman had an in with the authorities.
这个生意人与当局有特殊的关系。
参考技术A 时间上:on后面加具体的日期,就是具体到某一天上。如on Saturday,on a rainy day.
in后面加早上、中午、晚上、月份、季节、年份,如in the evening,in July,in summer,in 2008
空间上:
on表示在一个面上,比如on the desk
in表示在一个立体的物体的内部,比如in the the house本回答被提问者采纳 参考技术B on后面加具体的日期,如on Saturday,on a rainy day.
in后面加早上、中午、晚上、月份、季节、年份,如in the evening,in July,in summer,in 2008
注:在某一天的早中晚上要用on,如on the evening of the Thanksgiving. 参考技术C on 后是加具体日期 几月几号而不是月份
in后加早上、中午、晚上、月份、季节、年份,注意只能加这些!再具体的日期要用on
你说的具体时间是类似于“2:24”这样的吧。那要用at
在java中,为什麽文件写之后,紧跟着就读,读取不到
参考技术A 先看看你要写的文件存在还是不存在,如果存在的话,看是不是把想写的东西写进去了,如果写进去了再看为什么没有读取出来。一步一步用排除法解决问题,这也是解决编程过程中解决问题的基本思路。 参考技术B这样可以
import java.io.*;public class temp
public static void main(String[] args) throws IOException
PrintWriter p = new PrintWriter(new BufferedOutputStream(new FileOutputStream("a.txt")));
p.print("this is a test");
p.close();
BufferedReader r = new BufferedReader(new InputStreamReader(new FileInputStream("a.txt")));
String s = r.readLine();
System.out.println(s);
r.close();
参考技术C 你写数据到文件的输出流是不是没有关闭就直接用输入流去读了?
输出流不关闭的话是内容是不会写到文件上的,一定要先关闭输出流,文件才写入完成
以上是关于on后面加什麽的主要内容,如果未能解决你的问题,请参考以下文章