PowerShell

操作方法
1.管理者権限でWindows PowerShellを起動します。

2.「cd C:\study\skill\powershell」と入力します。

3.「Set-ExecutionPolicy ...

Go言語

書式
func Itoa(i int) string
Itoaは、iを表す10進数文字列を返します。
使用例

package mainimport "fmt"import("strconv")func m ...

Go言語

書式
func Atoi(s string) (i int, err os.Error)
使用例

package mainimport "fmt"import("strconv")func main(){ var ...

Go言語

書式
func TrimSpace(s string) string
文字列の先頭と末尾の空白を取り除きます。
使用例

package mainimport "fmt"import "strings"im ...

Java

書式
関数名(インターフェース 変数)
変数:クラスのインスタンス
使用例
1.インターフェースの定義

package com.arkgame.study;public interface Int ...

Windows10

現象
コマンドプロンプトで「explorer」と入力し、エラーメッセージが表示されます。

エラーメッセージ
‘explorer’ は、内部コマンドまたは外部コマンド、操作可能なプログ ...

VBScript

説明
winmgmts:WMI(Windows Management Instrumentation)
\\.\ 現在のコンピュータ
root\cimv2 オブジェクトの名前空間
該当する全てのオブジェ ...

Kotlin

書式
fun append(value: Char): StringBuilder
fun append(value: String): StringBuilder
fun append(value: Int) ...

Java

書式
1.public static IntStream stream(int = { 111, 222, 333, 444, 555 };//int型配列B protected static int cftB args) { ...

Java

書式
for (データ型 変数名:配列名)
使用例

package com.arkgame.study;public class CalendarDemo {//int型配列 protected static i ...

Java

書式

for( String 変数名:リスト名){ if(条件式){ contiune; }}

使用例

package com.arkgame.study;import java.util.ArrayList;impo ...

Cmd

書式
net share 共有名
1.「InfoShare」という共有名で、「D:\cft」を共有
D:\>net share InfoShare=D:\cft
InfoShare が共有されまし ...

Spring Boot

書式
@Scheduled(fixedRate = 1000)
public void fixedRateSch() {
}
実行開始時点から指定時間後に次のtaskを実行する. 単位はms
使 ...

Spring Boot

書式
実行完了時点から指定時間後次のタスクを実行
@Scheduled(fixedDelay = xxx)

実行開始時点から指定時間後に次のtaskを実行
@Scheduled(fixedRate ...

Bootstrap4

書式
.input-group-text 前方・後方部品にテキストを用いる
使用例

<head> <meta charset="utf-8"> <meta name="viewpor ...

Bootstrap4

書式
.input-group-sm  小さいインプットグループ
.input-group-lg  大きなインプットグループ
使用例

<head> <title>Bootstrap ...

Bootstrap4

書式
.input-group  インプットグループを構成
.input-group-prepend 前方部品
.input-group-append 後方部品
使用例

<head> ...

PHP

書式
変数名 = new クラス名;
&変数名->関数名;
使用例

<?phpclass User { public $value = 78; public function & ...