Java

サンプルコード
public static double convertToDouble(String number, double defaultValue) {
if (TextUtils.isEmpty(numb ...

Java

サンプルコード
public static float convertToFloat(String number, float defaultValue) {
if (TextUtils.isEmpty(number) ...

JavaScript

<script type=”text/javascript” src=”script/jquery-1.6.2.min.js”></script>
< ...

shellscript

1. C オプションで指定
$ ps –no-heading -C <prog_name> -o pid

2.grepコマンド
$ cft_detach_process & ...

Java

class Simple {
static int a;
int b;
}

Simple cftA = new Simple();
Simple cftB = new Simple(); ...

shellscript

サンプルコード:
#!/bin/bash

echo “PID of this script: $$”
echo “PPID of this script: $PPID&# ...

Linux

サンプル
#!/bin/bash
#file_desc

exec 3<&0 0<name.txt
read line1
read line2
exec 0< ...

Python

1.追加
body = {“name”: ‘山田太郎’, ‘sex’: ‘female’, ‘age’: ...

Java

サンプル
package test;

import java.io.Serializable;

public class InstanceOfDemo {

public static voi ...

Java

struts.xml
<struts>
<package name=”cftUserInfo” namespace=”/foliofn”>

JavaScript

例1
var ct = isNaN(s) ? null : s < 0 ? -1 : 1;

例2
if(isNaN(xx))
{
//some code
}
例3 ...

jQuery

サンプルコード
$(this).on(‘click’, ‘#btnTest, function(){
$(‘#userInfo’).val( model.tr ...

Python

サンプル
for line in open(‘changfa.csv’, ‘r’):
list = line.split(‘,’)
pri ...

JavaScript

1.Array.prototype.concat()
concat() メソッドは、配列に他の配列や値をつないでできた新しい配列を返します。
サンプルコード
var cft = ;
var result ...

Python

サンプル
cft= None
if cft is None:
print ” data is null”

Ruby

サンプル
cityinfo = {:tokyo => “東京”, :oosaka => “大阪”, :fukuoka => “福岡”,: ...

Ruby

1.uptoメソッド
1.upto(4) do |i|
puts “#{i}回目”
end
#=>0回目
# 1回目
# 2回目
# 3回目 ...

Software

サンプル:
#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

$i = 0
$num = 5

while $i < $num do
puts( ...