忍者ブログ

学習用

2025
04,28

«[PR]»

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

2020
07,16
public class MyApp {
  public static void main(String[] args) {
    String s = "abcdef";
    System.out.println(s.length()); // 6
    System.out.println(s.substring(2, 5)); // cde
    System.out.println(s.replaceAll("ab", "AB"));
    String s1 = "ab";
    String s2 = "ab";
    if (s1.equals(s2)) {
      System.out.println("same!");
    }
    if (s1 == s2) {
      System.out.println("same!same!");
    }
//文字列ごとにきっちり新しい領域を使わせたい場合にはnew してあげて
//明示的にメモリ領域をとってあげるといい
    String ss1 = new String("ab");
    String ss2 = new String("ab");
    if (ss1 == ss2) {
      System.out.println("same!same!same!");
    }
  }
}
PR
Post your Comment
Name:
Title:
Mail:
URL:
Color:
Comment:
pass: emoji:Vodafone絵文字 i-mode絵文字 Ezweb絵文字

[45] [44] [43] [42] [41] [40] [39] [38] [37] [36] [35]


« printf _1: HOME : ラムダ式_1 »
プロフィール
HN:
No Name Ninja
性別:
非公開
カテゴリー
最新記事
P R

Powered by Ninja.blog * TemplateDesign by TMP
忍者ブログ[PR]