周六加班,停。周日上午复习SQL语法。
什么是档案?
所有正在执行中的程序和数据,都是放在内存(memory)之中。内存存取速度快,但是容量小而且一关机数据就不见了。
档案则是存在硬盘上,容量大但存取慢,但是关机重来还是继续保存着。
所谓的读取档案就是将数据从硬盘放进内存里面,让程序可以操作。反之写入档案则是将内存的数据写入硬盘进行保存。
如何开档读取和写入
使用 Ruby 的 File API:
和IO https://ruby-doc.org/core-2.4.1/IO.html#method-c-new
读取档案内容:
写入档案:
String Output—Writes obj to ios. obj will be converted to a string using to_s
.
Ruby allows the following open modes:
https://ruby-doc.org/core-2.4.1/IO.html#method-c-new
"r" Read-only, starts at beginning of file (default mode). "r+" Read-write, starts at beginning of file. "w" Write-only, truncates existing file to zero length or creates a new file for writing. "w+" Read-write, truncates existing file to zero length or creates a new file for reading and writing. "a" Write-only, each write call appends data at end of file. Creates a new file for writing if file does not exist. "a+" Read-write, each write call appends data at end of file. Creates a new file for reading and writing if file does not exist.
题目 29
请打开 todos.txt
,其中每一行就是一个待办事项。
请编写一个程序,可以新增和删除代办事项,最后可以存盘离开。
重新执行这只程序,可以继续上次的代办事项。
注意:gets
读到的字符串,最后都会有一个换行符号,这是一个萤幕不可见的字符,在字符串中用 "\n"
表示。用 chomp
方法可以去除字符串前后的空白和换行符号 "\"
。
答案:
备注:之后我git push origin,成功后打开git网页, creat pull request. 最后看了一下别的同学的做法。上交了作业。