Java

説明
thisでコンストラクタ内から他のコンストラクタを呼び出します
使用例
(1).クラスの定義

package com.arkgame.study;public class ConstrutcorSa ...

Java

説明
「.*」は 0文字以上の任意の文字列
Javaコード

package com.arkgame.study;import java.util.regex.Matcher;import java.util.re ...

GitLab

構文
git archive <コミット対象> <オプション>
オプション
-o 指定ファイル名
-l ファイルの一覧

使用例
1.特定フォルダを指定ファイル ...

Windows10

ダウンロード
提供元サイトからダウンロード
majorgeeksサイトからダウンロード
更新内容
Dialog wording of detected antivirus that is install ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード

更新内容

added a new registration method: SMS. Useful if you ...

Kotlin

書式
文字列.split(“:”,”,”)
使用例

fun main() { val cft = "123:key1,456:key2,789:key3,090:k ...

Kotlin

書式
対象文字列.split(“,”,limit = 数値)
使用例

fun main() { val cft = "study,skill,in,arkgme,.com,become,s ...

Oracle

構文
create public synonym シノニム名 forテーブル名(プロシージャ)
CREATE SYNONYM文を使用すると、シノニムを作成できます。シノニムとは、表、ビュー、順序、
演算子、プロ ...

VB.net

構文
リストを配列に変換する
Public Function ToArray() As T()

サンプルコード

Module ModuleTest Sub Main() Dim sLst As New ...

JavaScript

書式
1.HTMLCollection.item()
リスト内の指定された index (先頭はゼロ) 位置にある特定のノードを返します
2.HTMLCollection.namedItem()
nam ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード

更新内容
New feature: window capture (images are saved to th ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
概要
XnViewは400種類以上の画像ファイルを読み込むことができ、変換もできる高機能画像ビューアです。

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード

更新内容

Added support for Windows 10 Technical Preview.
A ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード

更新内容
Enhanced Detections:
Exploit-CVE2012-0158!rtf ...

Groovy

書式
if(条件式)
break;
使用例

class Arkmple { static void main(String cft = ;//forループ for(int i in cft) { prin ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
概要
TwitterBackupは自分が投稿したツイートをバックアップすることができるソフトです。
2回目以 ...

C言語

構文
enum 列挙名 {some code};
enum 列挙名 変数名
switch(変数名){
case 列挙の要素:xxx
}

使用例

#include <std ...

Ruby

書式
.push(値)

使用例

cftArr= cftArr.push("D004") print("result1\n")p cftArr.join('-')print("result2\n")cftArr ...