火力発電所、原子力発電所
火力発電所は、燃料を燃やして、水蒸気をつくり、上記の力でタービンを回転させ、回転を発電機につたえ、電気を発生させる。
火力発電所の燃料の種類には、「LNG」「石油」「石炭」がある。
原子力発電所は、ウランを核分裂させ、そのとき発生する熱で水蒸気をつくり、タービンを回転させ発電する。
PR
情報処理試験など、理系の試験対策、関連知識、日記などです
1.1 Algorithms
Informally, an algorithm is any well-defined computational procedure that takes some value, or set of values, as input and produces some value, or set of values, as output. An algorithm is thus a sequence of computational steps that transform the input into the output.
Item 1: Consider static factory methods instead of constructors日本語でのポイント
The normal way for a class to allow a client to obtain an instance of itself is to provide
a public constructor. There is another technique that should be a part of every
programmer’s toolkit. A class can provide a public static factory method, which is
simply a static method that returns an instance of the class.
Item 1: Consider static factory methods instead of constructors
The normal way for a class to allow a client to obtain an instance of itself is to provide a public constructor. There is another technique that should be a part of every programmer’s toolkit.