Ruby

書式

until conditional 処理codeend

untilでは指定した条件がfalseである間ループします。
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 ...

Ruby

構文
for 変数 in オブジェクト do
処理コード
end
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-for num in 1..10 do ...

Python

説明
quantize(exp, rounding=None, context=None)
二つ目の操作対象と同じ指数を持つように丸めを行った、一つめの操作対象と等しい値を返します。
Decimal(̵ ...

Java

説明
1.default Predicate<T> and(Predicate<? super T> other)
この述語と別の述語の短絡論理積を表す合成述語を返します。合成述語の評価時にこの ...

Thymeleaf

構文
th:object =”${オブジェクト名}”
オブジェクト名を指定して、タグの子要素の中では*{}でオブジェクトのプロパティ名を参照します。
Javaコード

@Contro ...

Thymeleaf

書式
変数式 ${変数名}
th:text=”${変数名}”
Javaコード

@Controllerpublic class UserController { @GetMappin ...

Spring Boot

説明
@JsonComponent アノテーションを利用してjacksonを使用してjsonデータをシリアライズおよびデシリアライザします。
@JsonComponent アノテーションはJsonSerializer、 ...

Spring Boot

説明
HttpMessageConverters クラスを使用してオブジェクトは自動的に
JSONまたはXMLに変換できます。

サンプルコード

import org.springframework.b ...

SpringMVC

書式
@RestController
@RequestMapping(xxx)
public class Sample
サンプルコード

@RestController@RequestMapping ...

Spring Boot

書式

publci 関数名(ApplicationArguments args)

使用例

import org.springframework.boot.*;import org.springframew ...

Ruby

構文
code unless conditional
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-$var = 1print "AA11 -- this line ...

Python

構文
def 関数名(引数)
サンプルコード

# coding: utf-8#!/usr/bin/python3def funccft(x): while x < 10: yield x x += 2res ...

Python

構文
yield 文字列
サンプルコード

# coding: utf-8#!/usr/bin/python3def funccft(): yield "Test001" yield "Test002" yield ...

Ruby

書式
Array.new(要素の数, 文字列)
Array.new(要素の数) { 条件式}
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-os = Array.ne ...

Ruby

構文
配列名 = Array.new
配列名 = Array.new(数値)
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-names = Array.new ...

Windows10

操作方法
1.「Windows」マーク + キーを押します

2.「ファイル名を指定して実行」が表示されます。

3.「名前(O):」の欄に「MSInfo32」を入力します。

4.「OK」をクリ ...

Ruby

書式
new
string と同じ内容の新しい文字列を作成して返します。
引数を省略した場合は空文字列を生成して返します。
サンプルコード

#!/usr/bin/ruby# -*- coding: ...

Ruby

構文
%Q{字符串}
%q{字符串}
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*- ark1 = %Q{文字列(String)は、ダブルクォート(")または ...