- Scientific Computing with Scala
- Vytautas Jan?auskas
- 152字
- 2021-07-16 11:07:22
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "For now, simply create a new folder called csvreader
and a file in it called CSVReader.scala
."
A block of code is set as follows:
object CSVReader { def main(args: Array[String]) { for (line <- Source.fromFile("iris.csv").getLines()) { println(line) } } }
Any command-line input or output is written as follows:
scala> xs dot ws res2: Double = 27.5
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "You can access it via the Plot menu option."
推薦閱讀
- 深入核心的敏捷開發:ThoughtWorks五大關鍵實踐
- 程序員面試白皮書
- CentOS 7 Linux Server Cookbook(Second Edition)
- 云原生Spring實戰
- Java加密與解密的藝術
- 精通Python自然語言處理
- Hands-On Natural Language Processing with Python
- FPGA Verilog開發實戰指南:基于Intel Cyclone IV(進階篇)
- Unity 2D Game Development Cookbook
- PHP+MySQL+Dreamweaver動態網站開發從入門到精通(第3版)
- The Professional ScrumMaster’s Handbook
- Unity 2018 Shaders and Effects Cookbook
- OpenCV with Python By Example
- Hadoop大數據分析技術
- Xamarin Cross-Platform Development Cookbook