狠狠撸

狠狠撸Share a Scribd company logo
E?ective	
 ?Java	
 ?8章	
 ?
株式会社CyberZ? ?鳥居	
 ?英	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? ローカル変数が初めて使?用された時に宣?言する	
 ?
?? whileループよりforループを選択する	
 ?
?? メソッドを?小さくして変数の焦点をはっきりさせる	
 ?
ローカル変数のスコープを最?小限にすることで、コードの可読性と	
 ?
保守性が向上し、誤りの可能性が減る	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? ローカル変数が初めて使?用された時に宣?言する	
 ?
?? whileループよりforループを選択する	
 ?
?? メソッドを?小さくして変数の焦点をはっきりさせる	
 ?
ローカル変数のスコープを最?小限にすることで、コードの可読性と	
 ?
保守性が向上し、誤りの可能性が減る	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? ローカル変数が初めて使?用された時に宣?言する	
 ?
?? ローカル変数を早めに宣?言すると、スコープを広げてしまい、意図して
いる使?用場所ではない箇所で誤って使?用される可能性がある	
 ?
?? ローカル変数宣?言は、初期化?子を含めるべき	
 ?
?? 変数を合理理的に初期化するのに?十分な情報がない場合は、情報が得られるまで
宣?言を先送りにする	
 ?
?? try-‐??catch?文で、チェックされる例例外をスローするメソッドの戻り値で変
数が初期化され、その変数がtryブロックの外で利利?用され得る場合は、使
?用場所ではなく、tryブロックの前で変数を宣?言する必要がある	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? ローカル変数が初めて使?用された時に宣?言する	
 ?
?? whileループよりforループを選択する	
 ?
?? メソッドを?小さくして変数の焦点をはっきりさせる	
 ?
ローカル変数のスコープを最?小限にすることで、コードの可読性と	
 ?
保守性が向上し、誤りの可能性が減る	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? whileループよりforループを選択する	
 ?
?? ループ変数のスコープの範囲はforループ内に限定されるため、ループ変
数の内容がループ終了了後に必要ない場合はforループを選択する	
 ?
?? forループを使?用した場合	
 ?
?? whileループを使?用した場合	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? ローカル変数が初めて使?用された時に宣?言する	
 ?
?? whileループよりforループを選択する	
 ?
?? メソッドを?小さくして変数の焦点をはっきりさせる	
 ?
ローカル変数のスコープを最?小限にすることで、コードの可読性と	
 ?
保守性が向上し、誤りの可能性が減る	
 ?
項?目45? ローカル変数のスコープを最?小限にする	
 ?
?? メソッドを?小さくして変数の焦点をはっきりさせる	
 ?
?? 1つのメソッドの中に2つの処理理がある場合は、1つの処理理に対して1つの
メソッドとする	
 ?
項?目46? 従来のforループよりfor-‐??eachループを選ぶ	
 ?
?? 従来のforループ	
 ?
?? ループ毎にインデックス変数が複数回出現し、間違える機会がある	
 ?
?? for-‐??eachループ	
 ?
?? インデクッス変数を隠蔽している	
 ?
?? パフォーマンス上も優位性あり	
 ?
項?目46? 従来のforループよりfor-‐??eachループを選ぶ	
 ?
?? フィルタリング	
 ?
?? コレクションをイテレートして、選択された要素だけを削除する必要が
ある場合は、明?示的なイテレータを使?用する必要がある	
 ?
?? 変換	
 ?
?? リストや配列列をイテレートして、その要素の値の幾つかを置換する必要
がある場合は、要素の値を設定するためにリストイテレータや配列列イン
デックスが必要となる	
 ?
?? 並列列イテレーション	
 ?
?? 複数のコレクションを並列列にイテレートする必要がある場合には、イテ
レータやインデックス変数に対する明?示的な制御が必要となる	
 ?
for-‐??eachループが使?用できない下記の状況を除いてはfor-‐??eachループ	
 ?
を使?用する	
 ?
項?目47	
 ?ライブラリーを知り、ライブラリーを使う	
 ?
?? ライブラリーを書いた専?門家の知識識と、利利?用してきた?人々の経験を利利?用できる	
 ?
?? ライブラリーで解決できる問題に対して時間を費やすべきではない	
 ?
?? ライブラリーの更更新により、?自分で何もしなくともパフォーマンスが改善したりする	
 ?
?? コードの可読性や保守性が向上する	
 ?
ライブラリーを利利?用すべき4つの理理由	
 ?
?? 主要リリース毎に追加された機能を把握しよう	
 ?
?? 少なくともjava.lang,	
 ?java.utilとjava.ioの内容だけは抑えておく	
 ?
ライブラリーの理理解に向けて	
 ?
項?目48? 正確な答えが必要ならば、?oatとdoubleを避ける	
 ?
?? ?oat型とdouble型では?小数点を正確に表現できない	
 ?
?? ?金金銭計算にはBigDecimal型、またはint型,	
 ?long型を利利?用する	
 ?
?? BigDecimal型は基本データの算術型を使?用するより不不便便で遅いが、?小数点を考
える必要がない	
 ?
?? パフォーマンスが重要な場合は、桁数が?大きすぎない場合はintがlongを利利?用す
る	
 ?
??int	
 ?:	
 ?9桁、	
 ?long	
 ?:	
 ?18桁、	
 ?BigDecimal	
 ?:	
 ?18桁以上	
 ?
2進浮動?小数点算術は、広い範囲の?大きさに対して正確な近似をすばやく?行行う	
 ?
ために設計されており、正確な結果を提供しない	
 ?
項?目48? 正確な答えが必要ならば、?oatとdoubleを避ける	
 ?
?? 1ドル持っている時に10,20,30,40セントのものを購?入する場合	
 ?
?? BigDecimal型	
 ?
?? int型	
 ?
項?目49? ボクシングされた基本データより基本データ型を選ぶ	
 ?
?? Javaは基本データ型と参照型の2部型システムを持つ	
 ?
?? 基本データ型:int,	
 ?double,	
 ?boolean等	
 ?
?? 参照型:String,	
 ?List等	
 ?
?? 全ての基本データ型は、ボクシングされた基本データと呼ばれる対
応する参照型を持つ	
 ?
?? int	
 ?→Interger	
 ?
?? double	
 ?→	
 ?Double	
 ?
等	
 ?
項?目49? ボクシングされた基本データより基本データ型を選ぶ	
 ?
?? 基本データ型とボクシングされた基本データ間の違い	
 ?
?? 基本データ型は値のみを持つが、ボクシングされた基本データは値とは
別のアイデンティティを持つ	
 ?
?? 値は同じでも異異なるインスタンスを持つ	
 ?
?? ==で?比較できない	
 ?
?? ボクシングされた基本データ型はnullをもつ	
 ?
?? 基本データ型の?方が効率率率的	
 ?
項?目49? ボクシングされた基本データより基本データ型を選ぶ	
 ?
?? ?自動ボクシングと?自動アンボクシングにより、基本型とボクシング
された基本データ型の違いは不不明瞭になったが、どちらを使?用して
いるか意識識すること	
 ?
?? 間違っても下のような記述をしない	
 ?
?? sumがLong型で宣?言されているため、ボクシングとアンボクシングが繰り返さ
れてしまい、恐ろしく性能低下する	
 ?
項?目50? 他の型が適切切な場所では、?文字列列を避ける	
 ?
?? ?文字列列は、他の値型に対する代替としては貧弱	
 ?
?? データが数値ならint,	
 ??oat,	
 ?double	
 ?
?? データが「はい/いいえ」ならboolean	
 ?
?? ?文字列列は、列列挙型に対する代替としては貧弱	
 ?
?? enumの?方が優れた列列挙型(項?目30参照)	
 ?
?? ?文字列列は、集合型に対する代替しては貧弱	
 ?
項?目51? ?文字列列結合のパフォーマンスに?用?心する	
 ?
?? ?文字列列結合演算?子(+)は?非常に遅い	
 ?
?? ループの中ではStringBuilderを利利?用した連結を?行行いましょう	
 ?
項?目52? インタフェースでオブジェクトを参照する	
 ?
?? オブジェクトの参照はインタフェースを使?用するべき	
 ?
?? 実装を変更更したい場合、インタフェースが同じであれば、宣?言部分を変
更更するだけで動作する	
 ?
項?目53? リフレクションよりインタフェースを選ぶ	
 ?
?? リフレクションには対価がともなう	
 ?
?? コンパイル時の型チェックが?行行われない	
 ?
?? コードがぎこちなく、冗??長になる	
 ?
?? パフォーマンスが悪くなる	
 ?
?? リフレクションを制限した形式で利利?用することで上記コストを負う
ことなくリフレクションを利利点を得ることができる	
 ?
項?目54? ネイティブメソッドを注意して使?用する	
 ?
?? Java	
 ?Native	
 ?Interface(JNI)により、CやC++などのネイティブの
プログラミング?言語で書かれたネイティブメソッドを呼び出すこと
が可能	
 ?
?? プラットフォーム固有の機構へのアクセス	
 ?
?? 古いデータへのアクセス	
 ?
?? パフォーマンス改善	
 ?
?? パフォーマンス改善のためにネイティブメソッドを使?用するべきで
はない	
 ?
?? JVMが?高速になってきた	
 ?
?? 移植性が激悪い	
 ?
?? 可読性が低い	
 ?
項?目55? 注意して最適化する	
 ?
?? 最適化とは	
 ?
?? 可読性、汎?用性を犠牲にして、パフォーマンスの向上させること	
 ?
?? 原則として最適化は?行行わないこと	
 ?
?? 速いプログラムより、良良いプログラムを書くこと	
 ?
?? パフォーマンスは後からついてくる	
 ?
?? パフォーマンスを制限するような設計上の決定は避ける	
 ?
?? 後から変更更するのが困難な場合もあるので、設計段階でパフォーマンスについ
て考慮する	
 ?
?? 良良いパフォーマンスを得るために、APIを捻捻じ曲げないこと	
 ?
項?目56? ?一般的に受け?入れられている命名規約を守る	
 ?
?? Javaプラットフォームには確?立立した命名規則がある	
 ?
識識別?子名	
 ? 例例	
 ? ?一般的な規則	
 ?
パッケージ	
 ?
com.google.inject,	
 ?
org.joda.time.format	
 ? ピリオドで区切切られた要素をもち、階層的であるべき	
 ?
クラス、インタフェース	
 ?Timer,	
 ?FutureTask,	
 ?HttpServlet	
 ?
1つ以上の単語で構成され、個々の単語の頭?文字は?大
?文字。単語の省省略略は基本的に避ける	
 ?
メソッド、フィールド	
 ? remove,	
 ?getHoge	
 ? 1つ以上の単語で構成され、最初の?一?文字は?小?文字	
 ?
定数フィールド	
 ? VALUES,	
 ?NEGATIVE_?INFINITY	
 ?
全て?大?文字の1つ以上の単語。アンダースコアの使?用
が唯?一推奨されている	
 ?
ローカル変数	
 ? I,	
 ?xref,	
 ?houseNumber	
 ?
メンバー名と同じ命名規則をもつが、単語の省省略略形も
許されている	
 ?
型パラメータ	
 ? T,	
 ?E,	
 ?K,	
 ?V,	
 ?X,	
 ?T1,	
 ?T2	
 ? 通常1?文字	
 ?
項?目56? ?一般的に受け?入れられている命名規約を守る	
 ?
?? 何らかの処理理を?行行うメソッド名は、動詞で始める	
 ?
?? append,	
 ?drawImage	
 ?
?? booleanを返すメソッド名は、is/hasで始める	
 ?
?? isEmpty,	
 ?hasSiblings	
 ?
?? アクセサはget/setで始める	
 ?
?? getAttribute,	
 ?setAttribute	
 ?

More Related Content

Recently uploaded (6)

20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
R S
?
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
Kurata Takeshi
?
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdfAZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
Tsubasa Yoshino
?
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
bearsmichimato99
?
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
ktomita2
?
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdfWhat-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
Kyohei Ito
?
20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
20250328冲搁耻产测碍补颈驳颈事前勉强会冲产补产补冲辫谤别蝉别苍迟补迟颈辞苍冲蝉濒颈诲别
R S
?
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
人间拡张から人间社会拡张へ(贬础搁颁厂2024讲演资料。产业技术総合研究所 蔵田武志)
Kurata Takeshi
?
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdfAZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
AZ-305 Microsoft Azure Infrastructure Solutions 取得学習会 第1回.pdf
Tsubasa Yoshino
?
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
JAWS-UG CDK支部 #20 マネコン支部!? VS CDK支部の初心者LT会 登壇資料 AWS CDKに入門してみた。
bearsmichimato99
?
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
【现役エンジニア向け】颁耻谤蝉辞谤て?効率的な础滨コーテ?ィンク?のススメ...
ktomita2
?
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdfWhat-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
What-is-SendAI-Solana-AI-Agent-Hands-on-for-EVM-Engineers.pdf
Kyohei Ito
?

Featured (20)

2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing2024 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 ProcessStorytelling 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...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...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
?
2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 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 ChatGPTEverything 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 EngineeringsProduct 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 HealthHow 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.pdfAI 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 CodeSkeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
?
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO 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)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 2024How 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 InsightsSocial 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 2024Trends 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 summary5 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 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 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 IntentGoogle'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 How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
?
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing2024 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 ProcessStorytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
?
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...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
?
2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 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 ChatGPTEverything 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 EngineeringsProduct 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 HealthHow 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.pdfAI 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 2024PEPSICO 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)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 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
?
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends 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 summary5 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 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 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 IntentGoogle'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
?

【社内輪読会】Effective Java 8章