Rikulo UI 0.6.8のダウンロード
ダウンロード:
提供元サイトからダウンロード
Sublime Text 2.0.2のダウンロード
ダウンロード:
提供元サイトからダウンロード
Sublime Text 2 may be downloaded and evaluated for free, however a license must be pur ...
Java8にOptionalクラスのサンプル
環境
Windows10 64bit
Eclipse 2019
Java8
書式
1.public T orElse(T other)
存在する場合は値を返し、それ以外の場合はoth ...
「Maven入門」exec-maven-pluginの使い方
pom.xml
追記
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</grou ...
「jQuery入門」remove()で要素を削除するサンプル
JSコード
<script>
$(document).ready(function(){
$(“button”).click(function(){
$(“ ...
Akka 2.2.0のダウンロード
ダウンロード:
提供元サイトからダウンロード
Cluster node roles or distributed pub-sub or the cluster client
Fully a ...
SpringBoot 2.6でフィールドインジェクションを行うサンプル
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
説明
@Component
インスタンスを S ...
Spring Bootでrequired a bean of type ‘xxx’ that could not be foundの解決方法
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
エラー現象
********************* ...
Gmsh 2.8.0のダウンロード
ダウンロード:
提供元サイトからダウンロード
GetDP 2.4.0のダウンロード
ダウンロード:
提供元サイトからダウンロード
Java8にOptionalでmapメソッドとflatMapメソッドのサンプル
環境
Windows10 64bit
Eclipse 2019
Java8
書式
flatMap(Function<? super T,Optional<U>> ma ...
「jQuery入門」replace()で文字列を削除するコード
1.htmlコード
<div>test data 12345 88</div>
2.JSコード
//文字列を空文字に置換
var cftVal = $(‘div& ...
「JavaScript」Math.signで数値の正数、ゼロ、負数を判定する
説明
Math.sign() 関数は、引数として渡された数値の符号が正か負かを表す +/- 1 を返します。
Math.sign() に渡された数が 0 であれば、 +/- 0 を返します。なお、数値が正である場合、明 ...
Riak 1.4のダウンロード
ダウンロード:
提供元サイトからダウンロード
Availability of cascading real-time writes gives operators the choice as to whether ...
「AngularJS」ng-hideディレクティブを使うサンプル
構文
<element ng-hide=”expression”></element>
<element class=”ng-hide”&g ...
「python入門」strip()で文字列のスペース、改行を取り除くサンプル
例1
>>> a = ‘ 123’
>>> a.strip()
‘123’
>>> a=’ ...
「JavaScript」コールバック(callback)関数のサンプル
説明
コールバック関数は他の関数に引数として渡される関数で、外側の関数で何らかの処理やアクションを実行します。
書式
function 関数A(引数A){処理コード}
function 関数B(引数B) ...
「VB.NET」Enumの要素名と値を全て取得する
書式
1.Enumクラスの宣言
Enum 列挙型名
要素
End Enum
2.Enumの要素を取得
For Each 変数名 As Enum名 In .GetValues(GetTyp ...