Software

サンプルコード

enum Student{ case Name(String)//型だけ指定 case Mark(Int,Int,Int)}var studDetails = Student.Name("arkgame")var ...

Software

サンプルコード

import Cocoa//列挙型(enum)enum DaysofaWeek { case Sunday case Monday case TUESDAY case WEDNESDAY case THURSDA ...

Software

サンプルコード

package com.arkgame.study;import java.util.HashSet;import java.util.Iterator;import java.util.Set;public c ...

Software

サンプルコード

package com.arkgame.study;import java.util.HashSet;import java.util.Set;public class HashSetDemo {public s ...

Software

1.Tomcat8.5のPORTがLISTENG状態か確認
C:\data>netstat -an | findstr 0.0:8080
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING ...

Software

サンプルコード

package com.arkgame.study;public class IntegerDemo {public static void main(String[] args) {try {int a = I ...

Software

方法1

UPDATE TABLE_NAME SET COLUMN_NAME1 = VALUE1 , COLUMN_NAME2 = VALUE2 中略 ;

 

方法2

UPDATE TABLE_NA ...

Software

書式
$(“.class名”)
サンプルコード

$(document).ready(function(){ $("button").click(function(){ $(".test") ...

Software

構文
$(“#id名”)

サンプルコード

$(document).ready(function(){ $("button").click(function(){ $("#test"). ...

Software

サンプルコード

public static boolean isStrEmpty(String str){   if(str == null || str.length()==0){    return true;   }  r ...

Software

説明
precision–列の精度
nullable– DBのカラム列がnull可能かどうか
unique–列がユニークキーであるかどうか
columnDefinit ...

Software

1.equals()
例1
Integer intA = new Integer(33);
Integer intB = new Integer(33);
System.out.println(intA ...

Software

書式
fn:substring(対象文字列 , 開始位置 , 終了位置)

例1
${fn:substring(‘aakdfcqcc’,2,7)}/*結果kdfcq*/

例 ...

Software

コマンド
# yum install –enablerepo=epel libwebp
# yum install –enablerepo=remi-php70 gd-last
# yu ...

Software

1.PHP7.0をインストール
#yum install –enablerepo=remi,remi-php70 php php-devel php-mbstring php-pdo php-gd php-xml ...

Linux

1.tar.gz
圧縮
tar -zcvf test.tar.gz directory
解凍
tar -zxvf test.tar.gz

2.tar.bz2
圧縮
tar - ...

Software

書式
FILE *fopen(const char *filename, const char *mode);
サンプルコード

#include <stddef.h>#include <stdi ...

Software

書式
ln targetlink

1.ハードリンクを作成
ディレクトリ(testdir)内にあるファイル(testfile)にlnコマンドを実行する
$ ln testdir/testfile ...