SlideShare a Scribd company logo
Java SE7 新機能!
Android開発目線で
13年8月9日金曜日
自己紹介
美馬 優貴
大学生
OCPでLPIClv3
AWSとAndroid開発を少々
twitter:@amyu_san
13年8月9日金曜日
Androidアプリ作ってたら
13年8月9日金曜日
13年8月9日金曜日
うわっ…私のJavaのVer、
低すぎ…?
>>あなたの適正Ver
無料5分で、適正Verや
Java基礎能力が分かる
「市場価値診断テスト」。
受けた人は1人を突破!
結果もすぐわかると大人気
CHECK!
13年8月9日金曜日
仕方ない、1.7にするか
13年8月9日金曜日
13年8月9日金曜日
Android requires
compiler compliance
level 5.0 or 6.0. Found
'1.7' instead
13年8月9日金曜日
AndroidはJava7に
対応していない!
13年8月9日金曜日
もしAndroidがJava7
対応していたら!
13年8月9日金曜日
switch
13年8月9日金曜日
String s = “aaaa”;
switch(s){
	 case “aaaa”:
	 	 System.out.println(“aaaa”);
	 	 break;
	 case “bbbb”:
	 	 System.out.println(“bbbb”);
	 	 break;
	 case “cccc”:
	 	 System.out.println(“cccc”);
	 	 break;
	 default:
	 	 System.out.println(“”);
	 	 break;
}
String s = “aaaa”;
if (s == “aaaa”){
	 System.out.println(“aaaa”);
}else if(s==”bbbb”){
	 System.out.println(“bbbb”);
}else if(s==”cccc”){
	 System.out.println(“cccc”);
}else{
	 System.out.println(“”);
}
13年8月9日金曜日
String s = “aaaa”;
switch(s){
	 case “aaaa”:
	 	 System.out.println(“aaaa”);
	 	 break;
	 case “bbbb”:
	 	 System.out.println(“bbbb”);
	 	 break;
	 case “cccc”:
	 	 System.out.println(“cccc”);
	 	 break;
	 default:
	 	 System.out.println(“”);
	 	 break;
}
String s = “aaaa”;
if (s == “aaaa”){
	 System.out.println(“aaaa”);
}else if(s==”bbbb”){
	 System.out.println(“bbbb”);
}else if(s==”cccc”){
	 System.out.println(“cccc”);
}else{
	 System.out.println(“”);
}
13年8月9日金曜日
ListView
13年8月9日金曜日
13年8月9日金曜日
13年8月9日金曜日
String item = クリックされた文字;
Intent intent = new Intent();
switch(item){
	 case “amyu”:
	 	 intent.putExtra(“test”,1);
	 	 break;
	 case “amya”:
	 	 intent.putExtra(“test”,2);
	 	 break;
	 case “amyo”:
	 	 intent.putExtra(“test”,3);
	 	 break;
}
String item = クリックされた文字;
Intent intent = new Intent();
if (item == “amyu”){
	 intent.putExtra(“test”,1);
}else if(item == ”amya”){
	 intent.putExtra(“test”,2);
}else if(item == ”amyo”){
	 intent.putExtra(“test”,3);
}
13年8月9日金曜日
String item = クリックされた文字;
Intent intent = new Intent();
switch(item){
	 case “amyu”:
	 	 intent.putExtra(“test”,1);
	 	 break;
	 case “amya”:
	 	 intent.putExtra(“test”,2);
	 	 break;
	 case “amyo”:
	 	 intent.putExtra(“test”,3);
	 	 break;
}
String item = クリックされた文字;
Intent intent = new Intent();
if (item == “amyu”){
	 intent.putExtra(“test”,1);
}else if(item == ”amya”){
	 intent.putExtra(“test”,2);
}else if(item == ”amyo”){
	 intent.putExtra(“test”,3);
}
13年8月9日金曜日
case:nullは使えないよ!
だからNull処理をしないと
13年8月9日金曜日
String s = “aaaa”;
if(s!=null){
switch(s){
	 case “aaaa”:
	 	 System.out.println(“aaaa”);
	 	 break;
	 case “bbbb”:
	 	 System.out.println(“bbbb”);
	 	 break;
	 case “cccc”:
	 	 System.out.println(“cccc”);
	 	 break;
	 default:
	 	 System.out.println(“”);
	 	 break;
} else {
}
}
13年8月9日金曜日
ガッ
13年8月9日金曜日
2進数リテラル
13年8月9日金曜日
13年8月9日金曜日
int binary = 0b10011;
13年8月9日金曜日
System.out
.println(binary);
13年8月9日金曜日
System.out
.println(binary);
=>19
13年8月9日金曜日
String ybin = Integer
.toBinaryString(binary)
13年8月9日金曜日
String ybin = Integer
.toBinaryString(binary)
=>10011
13年8月9日金曜日
アンダースコア
付き数値リテラル
13年8月9日金曜日
....。
13年8月9日金曜日
int number = 123_456_789
13年8月9日金曜日
int number = 123_456_789
=>12345678
13年8月9日金曜日
.........どうしよう。
13年8月9日金曜日
ジェネリクス
省略記法!
13年8月9日金曜日
javaSE6まで
List<String> aaa =
new
ArrayList<String>();
13年8月9日金曜日
javaSE7になったら!
List<String> aaa =
new ArrayList<>();
13年8月9日金曜日
メチャクチャ使用頻度が高い!
13年8月9日金曜日
Spinner
ListView
ExpandableList
etc...
13年8月9日金曜日
13年8月9日金曜日
try
13年8月9日金曜日
=>Scala
13年8月9日金曜日
Androidの開発は6
13年8月9日金曜日
Androidはいつ
Java7に
対応させるの?
13年8月9日金曜日
今でしょ!
できるだけ早めに…13年8月9日金曜日
Ad

Recommended

無料ではじめる Webサーバ監視
無料ではじめる Webサーバ監視
Mitsushige Ishiguro
 
ほんとうに便利だった業務で使えるJava SE8新機能(JJUG CCC 2015 Spring)
ほんとうに便利だった業務で使えるJava SE8新機能(JJUG CCC 2015 Spring)
Yuuki Fukuda
 
Java8勉強会
Java8勉強会
賢太郎 前多
 
飯テロのススメ
飯テロのススメ
amyusan
 
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
 
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
 
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
 
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
 
勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
iPride Co., Ltd.
 
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
iPride Co., Ltd.
 
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
NTT DATA Technology & Innovation
 
Protect Your IoT Data with UbiBot's Private Platform.pptx
Protect Your IoT Data with UbiBot's Private Platform.pptx
ユビボット 株式会社
 
やってみた!OpenAI Function Calling 入門 .
やってみた!OpenAI Function Calling 入門 .
iPride Co., Ltd.
 
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
Takuma Oda
 
色について.pptx .
色について.pptx .
iPride Co., Ltd.
 
2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
Skeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 

More Related Content

Recently uploaded (7)

勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
iPride Co., Ltd.
 
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
iPride Co., Ltd.
 
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
NTT DATA Technology & Innovation
 
Protect Your IoT Data with UbiBot's Private Platform.pptx
Protect Your IoT Data with UbiBot's Private Platform.pptx
ユビボット 株式会社
 
やってみた!OpenAI Function Calling 入門 .
やってみた!OpenAI Function Calling 入門 .
iPride Co., Ltd.
 
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
Takuma Oda
 
色について.pptx .
色について.pptx .
iPride Co., Ltd.
 
勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
勉強会_ターミナルコマンド入力迅速化_20250620. pptx. .
iPride Co., Ltd.
 
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
Vibe Codingを始めよう 〜Cursorを例に、ノーコードでのプログラミング体験〜
iPride Co., Ltd.
 
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
PGConf.dev 2025 参加レポート (JPUG総会併設セミナー2025 発表資料)
NTT DATA Technology & Innovation
 
Protect Your IoT Data with UbiBot's Private Platform.pptx
Protect Your IoT Data with UbiBot's Private Platform.pptx
ユビボット 株式会社
 
やってみた!OpenAI Function Calling 入門 .
やってみた!OpenAI Function Calling 入門 .
iPride Co., Ltd.
 
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
AI技術共有会2025-06-05_DeepResearchの理解と実践.pdf
Takuma Oda
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
Skeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
Introduction to Data Science
Introduction to Data Science
Christy Abraham Joy
 
Time Management & Productivity - Best Practices
Time Management & Productivity - Best Practices
Vit Horky
 
The six step guide to practical project management
The six step guide to practical project management
MindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
RachelPearson36
 
2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity - Best Practices
Vit Horky
 
The six step guide to practical project management
The six step guide to practical project management
MindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
RachelPearson36
 
Ad

Java SE 7新機能! Android開発目線で