「VB.net入門」Continue Doを利用するサンプル
サンプルコード
Module ModuleTest Sub Main() Dim n As Integer = 0 Do While n < 10 If n = 5 Then n = n + 2 Continue Do E ...「VB.NET入門」Exit Doを利用するサンプル
サンプルコード
Module ModuleDemo Sub Main() Dim i As Integer = 0 Do While i < 15 If i = 10 Then Exit Do E ...
「VB.net入門」ExitでFor Each文のサンプル
サンプルコード
Sub Main()Dim city() As String = {"tokyo", "oosaka", "yokohama","kawasaki"} For Each cft As String In city ...「Java」getBytes()で文字列をバイト列に返すサンプル
書式
public byte byteData = ptVal.getBytes("UTF-8"); }catch(UnsupportedEncodingException e){ System.out.println(e); ...
「Swift入門」Setter、Getterを利用するサンプル
サンプルコード
class Test { var city = "yokohama" var cft: String { get { return self.city } set(city) { self.city = xxxx ...「java」Arrays.copyOfで配列から配列へのコピーのサンプル
サンプルコード
int copiedArr = Arrays.copyOf(arr, 10);//10 the the length of the new array
System.out.println(Arrays ...
Electron 7.2.4 ダウンロード
更新内容
Fixed Promise timeout issue when running Electron as Node. #23324Fixed a use-after-free error that could ...
PowerToys v0.17 ダウンロード
更新内容
PowerToys can now update itself #1686FancyZone can now snap to two zones (still experimental since it doe ...
Cyberduck 7.3.1ダウンロード
特徴:
– Edit ACLs for files (Google Storage)
– Support to set storage class (Google Storage)
...
Node.js v12.16.3 (LTS) ダウンロード
更新内容
Dependencies:Updated OpenSSL to 1.1.1g (Hassaan Pasha) #32971.Updated c-ares to 1.16.0 (Anna Henningsen) ...
「Java」ApacheCommons IO 2.6にcloseQuietly() の使い方
ダウンロード
利用前
finally { if (in != null) { try { in.close(); } catch (IOException e) { xxxxxx } } if (out !「Spring MVC」formタグにmodelAttribute属性を指定する
環境
Spring 5.3.21
構文
1.public @interface ModelAttribute
「Swift」for文で辞書データの要素を取得するサンプル
サンプルコード
var cft = for (key, value) in cft { println("dictionary key is \(key), value is \(value)")}
「PHP入門」json文字列をオブジェクトにデコードする
サンプルコード
$cft = array(“php入門”, “Java入門”,”Swift入門”);
//配列=>JSON
$t ...
「Struts2」ActionErrors()とFieldErrors()でメッセージを取得する
Javaコード
<s:if test="hasActionErrors() || hasFieldErrors()"> <div class="msg"> <s:iterator var="acti ...「Swift入門」continueとswitchでループの処理を中止する
説明
現在のループの処理を中止し、次の繰り返し処理を先頭から始めます。
サンプルコード
let cftStr = "Study swift in arkgame"var outStr = ""for cft ...「Swift入門」whileとrepeat-whileの使い方
1.while文
var n = 0 while n <= 16 { n = n + 1 if n % 3 == 0 { continue } print(n)}2.repeat-while文
var m = ...「Swift入門」timeIntervalSinceDateで日時の差を取得する
サンプルコード
let now = NSDate()
let dateA = NSDate(timeInterval: 60*60*24*14, sinceDate: now)//2週間後
let date ...