在ruby中打印出.txt文件有困难,ruby文件处理方法

问题描述 投票:0回答:1

问题是它不能从一个.txt文件中打印所有的文本。我可以打印txt文件的前3行,但不能打印其余部分。到目前为止,我得到了一个错误,这是在 print_album': undefined local variable or methodtracks'为main:Object(NameError)。

下面是代码。

*我知道在Ruby中使用全局变量不好,但这个练习要求我这么做。

  module Genre
  POP, CLASSIC, JAZZ, ROCK = *1..4
  end

  $genre_names = ['Null', 'Pop', 'Classic', 'Jazz', 'Rock']

  class Album
  # NB: you will need to add tracks to the following and the initialize()
  attr_accessor :title, :artist, :genre, :tracks

  # complete the missing code:
  def initialize (atitle, aartist, agenre, arrtrk)
    # insert lines here
    @genre = agenre
    @tracks = arrtrk
    @title = atitle
    @artist = aartist

  end
end

   class Track
   attr_accessor :ttitle, :tlocation

  def initialize (tname, tloc)
    @ttitle = tname
    @tlocation = tloc
end
end

 # Reads in and returns a single track from the given file

 def read_track music_file

  mytrk_name = music_file.gets
  mytrk_location = music_file.gets
  mytrk = Track.new(mytrk_name, mytrk_location)
  mytrk

 end

 # Returns an array of tracks read from the given file

 def read_tracks music_file
 count = music_file.gets().to_i
 tracks = Array.new
 $i = 0
 # Put a loop here which increments an index to read the tracks
 while $i < count do
   track = read_track(music_file)
   tracks << track
   $i += 1
 end
 tracks
end

# Takes an array of tracks and prints them to the terminal

def print_tracks tracks
 # print all the tracks use: tracks[x] to access each track.
$i = 0
while $i < tracks.length do
    print_track(tracks[$i])
    $i +=1
end
tracks
end

# Reads in and returns a single album from the given file, with all its tracks

def read_album music_file

# read in all the Album's fields/attributes including all the tracks
# complete the missing code
album_title = music_file.gets
album_artist = music_file.gets
album_genre = music_file.gets.to_i

tracks = read_tracks(music_file)

album = Album.new(album_title, album_artist, album_genre, tracks)
album
end


# Takes a single album and prints it to the terminal along with all its tracks
def print_album album

# print out all the albums fields/attributes
# Complete the missing code.
 puts 'Album title is '+ album.title
 puts 'Artist is ' + album.artist
 puts 'Genre is ' + album.genre.to_s
 puts $genre_names[album.genre]
# print out the tracks
 print_tracks(tracks)
end

# Takes a single track and prints it to the terminal
def print_track track
 puts('Track title is: ' + track.ttitle)
 puts('Track file location is: ' + track.tlocation)
end

# Reads in an album from a file and then print the album to the terminal

def main
 music_file = File.new("album.txt", "r")
 album = read_album(music_file)
 music_file.close()

 print_album(album)
end

main

下面是 album.txt

Greatest Hits
Neil Diamond
1
3
Crackling Rose
sounds/01-Cracklin-rose.wav
Soolaimon
sounds/06-Soolaimon.wav
Sweet Caroline
sounds/20-Sweet_Caroline.wav

目前我的输出是 。

Album title is Greatest Hits
Artist is Neil Diamond
Genre is 1
Pop

预期的输出是 。

Album title is Greatest Hits
Artist is Neil Diamond
Genre is 1
Pop
Track title is: Crackling Rose
Track file location is: sounds/01-Cracklin-rose.wav
Track title is: Soolaimon
Track file location is: sounds/06-Soolaimon.wav
Track title is: Sweet Caroline
Track file location is: sounds/20-Sweet_Caroline.wav
arrays ruby file file-handling
1个回答
1
投票

问题出在你的 def print_album album 方法。在该方法的最后一行,它使用了 print_tracks(tracks)tracks 变量是未定义的(这正是错误告诉你的)。

你需要调用 print_tracks(album.tracks)

© www.soinside.com 2019 - 2024. All rights reserved.