Why should I use a human readable file format?

后端 未结 24 1898
日久生厌
日久生厌 2020-12-04 17:53

Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn\'t the case?

EDIT: I did have this as an explana

24条回答
  •  既然无缘
    2020-12-04 18:09

    • Open format -- no binary bit juggling
    • Readability :)
    • Interchange across platforms
    • Debugging aid
    • Easily parsed (and easily converted to any format)

    One important point: you write a parser once, but read the output many times. That kind of tilts the balance in favor of HRF.

提交回复
热议问题