楼主: neuroexplorer
4813 6

[休闲其它] Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809 [推广有奖]

  • 5关注
  • 23粉丝

已卖:5901份资源

学科带头人

79%

还不是VIP/贵宾

-

威望
0
论坛币
29250 个
通用积分
850.5514
学术水平
58 点
热心指数
75 点
信用等级
63 点
经验
176544 点
帖子
3215
精华
0
在线时间
1416 小时
注册时间
2013-7-21
最后登录
2025-10-2

楼主
neuroexplorer 发表于 2016-2-17 07:42:08 |AI写论文

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币


Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809.pdf (4.63 MB, 需要: 5 个论坛币)





Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809
A Comprehensive OCPJP 8 Certification Guide
Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809
A Comprehensive OCPJP 8 Certification Guide


Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809
QR code - Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809
       
Book Description
This book offers a comprehensive guide for the Oracle Certified Professional Java SE 8 Programmer Exam. It starts by answering frequently asked exam questions followed by full coverage of exam topics with numerous programming and real-world examples.


Each chapter ends with practice exam questions and a quick summary that reviews key concepts covered in the chapter from the OCPJP exam perspective. The book ends with a full-length, mock exam to ensure you have enough practice before actually taking the exam.


If you are an OCPJP 8 exam aspirant, this book is certainly for you. The book assumes you're already familiar with Java fundamentals, which is in keeping with the prerequisite for having a OCAJP 8 certification.


You'll enjoy reading Oracle Certified Professional Java SE 8 Programmer Exam 1Z0-809 because of its clear, simple language; example driven approach; easy-to-read style; and complete focus on the exam requirements.
Book Details
Publisher:        Apress
By:        S G Ganesh, Tushar Sharma, Hari Kiran
ISBN:        978-1-484218-35-8
Year:        2016
Pages:        508
Language:        English
File size:        5 MB
File format:        PDF

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Professional Profession Programmer Programme Certified answering Oracle Java

已有 1 人评分经验 论坛币 收起 理由
william9225 + 100 + 100 精彩帖子

总评分: 经验 + 100  论坛币 + 100   查看全部评分

本帖被以下文库推荐

沙发
albertwishedu(未真实交易用户) 发表于 2016-2-19 13:04:01
OCPJP,有用吗?

藤椅
ReneeBK(未真实交易用户) 发表于 2017-6-25 05:05:02
  1. Listing 6-1. MatchUse.java
  2. import java.util.stream.IntStream;
  3. public class MatchUse {
  4. public static void main(String []args) {
  5. // Average temperatures in Concordia, Antarctica in a week in October 2015
  6. boolean anyMatch
  7. = IntStream.of(-56, -57, -55, -52, -48, -51, -49).anyMatch(temp -> temp > 0);
  8. System.out.println("anyMatch(temp -> temp > 0): " + anyMatch);
  9. boolean allMatch
  10. = IntStream.of(-56, -57, -55, -52, -48, -51, -49).allMatch(temp -> temp > 0);
  11. System.out.println("allMatch(temp -> temp > 0): " + allMatch);
  12. boolean noneMatch
  13. = IntStream.of(-56, -57, -55, -52, -48, -51, -49).noneMatch(temp -> temp > 0);
  14. System.out.println("noneMatch(temp -> temp > 0): " + noneMatch);
  15. }
  16. }
复制代码

板凳
ReneeBK(未真实交易用户) 发表于 2017-6-25 05:06:15
  1. Listing 6-2. FindFirstUse1.java
  2. import java.lang.reflect.Method;
  3. import java.util.Arrays;
  4. import java.util.Optional;
  5. import java.util.stream.Stream;
  6. public class FindFirstUse1 {
  7. public static void main(String []args) {
  8. Method[] methods = Stream.class.getMethods();
  9. Optional<String> methodName = Arrays.stream(methods)
  10. .map(method -> method.getName())
  11. .filter(name -> name.endsWith("Match"))
  12. .sorted()
  13. .findFirst();
  14. System.out.println("Result: " + methodName.orElse("No suitable method found"));
  15. }
  16. }
复制代码

报纸
ReneeBK(未真实交易用户) 发表于 2017-6-25 05:07:16
  1. Listing 6-3. FindFirstUse2.java
  2. import java.util.OptionalDouble;
  3. import java.util.stream.DoubleStream;
  4. public class FindFirstUse2 {
  5. public static void main(String []args) {
  6. OptionalDouble temperature = DoubleStream.of(-10.1, -5.4, 6.0, -3.4, 8.9, 2.2)
  7. .filter(temp -> temp > 0)
  8. .findFirst();
  9. System.out.println("First matching temperature > 0 is " + temperature.getAsDouble());
  10. }
  11. }
复制代码

地板
ReneeBK(未真实交易用户) 发表于 2017-6-25 05:09:05
  1. Listing 6-4. OptionalStream.java
  2. import java.util.Optional;
  3. public class OptionalStream {
  4. public static void main(String []args) {
  5. Optional<String> string = Optional.of(" abracadabra ");
  6. string.map(String::trim).ifPresent(System.out::println);
  7. }
  8. }
复制代码

7
ReneeBK(未真实交易用户) 发表于 2017-6-25 05:09:57
  1. Listing 6-5. WordsCalculation.java
  2. import java.util.Arrays;
  3. public class WordsCalculation {
  4. public static void main(String []args) {
  5. String[] string = "you never know what you have until you clean your room".split(" ");
  6. System.out.println(Arrays.stream(string).min(String::compareTo).get());
  7. }
  8. }
复制代码

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
jg-xs1
拉您进交流群
GMT+8, 2025-12-30 22:17