Чашечка Java
Open in Telegram
Лучшие материалы по Java на русском и английском Разместить рекламу: @tproger_sales_bot Правила общения: https://tprg.ru/rules Другие каналы: @tproger_channels
Show more8 552
Subscribers
+124 hours
-37 days
-2230 days
Posts Archive
8 551
[Solved] How to convert Hexadecimal to Decimal, Binary and Octal in Java? Example
Hexadecimal to decimal and binary conversion in Java
This Java program will convert Hexadecimal number to decimal, binary and Octal in Java programming languageusing JDK standard API methods. For beginners who are not familiar with number system, hexadecimal system is base 16 number, while decimal is base 10, Octal is base 8, and binary is base 2 numbers in Number systems. Binary only contains 0 and 1 bits, octal contains 0 to 7, decimal contains 0 to 9 and Hexadecimal contains 0-9,A,B,C,D,E,F where F represent 15. Thankfully Java library provides a convenient method to convert any integer from one number system to another.
Java Interview questions and tutorials
Read: http://www.java67.com/2012/10/convert-hexadecimal-to-decimal-binary-octal-java-example.html
8 551
How to create a Function to add two numbers in Java? Variable Argument Example Tutorial
How to add two numbers in Java
Hello guys, if you are just starting with Java programming and wondering how to write a function to add two numbers in Java then you have come to the right place. In...
Read: http://www.java67.com/2012/09/ava-program-to-add-two-numbers-code-example.html
8 551
5 Free Courses to Learn Kotlin in 2022 - Best of Lot
Hello guys, If you are in Android application development or server-side Java development, then you might have heard about the Kotlin programming language, created by JetBrains, the company behind popular IDEs like IntelliJIDEA, PyCharm, and WebStorm. Kotlin is also Google's official language for developing Android apps. If you don't know what Kotlin isand why you should learn Kotlin,then let me tell you that Kotlin is a mature programming language that offers many benefits over traditional programming languages like Java which has been time-tested over the last 25 years. Kotlin is designed to solve pain points of Java programming language like verbose nature and boilerplate.
Java Interview questions and tutorials
Read: http://www.java67.com/2020/05/5-free-courses-to-learn-kotlin-for-java-and-Android-developers.html
8 551
О чём расскажут на JPoint: от профайлеров до контейнеров
Конференция JPoint в этот раз особенная. Во-первых, помимо онлайн-части, впервые за два года будет возможность увидеться в офлайне. А во-вторых, этот офлайн-день пройдёт в Санкт-Петербурге (вместо привычной для JPoint Москвы). Но если до Петербурга добраться не можете, то и этот день можно увидеть хотя бы в виде онлайн-трансляции.
А вот с точки зрения программы таких разительных изменений нет. Нас по-прежнему интересуют доклады про инструменты, JVM, Spring, архитектуру, JVM-языки вроде Kotlin — в общем, про всё, что интересует опытных Java-разработчиков. Представляем Хабру описания докладов (и из онлайновой части, и из офлайновой).
Читать: https://habr.com/ru/post/669070/?utm_campaign=669070
8 551
9 июня пройдет бесплатный вебинар «Архитектура приложения и модуль бизнес-логики»
Это часть онлайн-курса «Kotlin Backend Developer», в который вы обсудите как поддерживать чистую архитектуру приложения и контролируемо внедрять изменения. А если пройдёте вступительный тест, то ещё получите запись курса по Git бесплатно.
Регистрация на вебинар: https://otus.pw/EXvg/
Это #партнёрский пост
8 551
How to know the best time to buy and sell stock in Java? LeetCode Solution Example
Hello guys, if you are preparing for coding interviews and looking for practice questions to sharpen your coding skill then you have come to the right place. In the past, I have shared 100+ data...
Read: http://www.java67.com/2022/06/how-to-know-best-time-to-buy-and-sell.html
8 551
Top 20 Java ArrayList Interview Questions and Answers
Hello guys, if you are preparing for Java interviews then you have come to the right place. In the past, I have shared 130+ Java interviews questions and online courses to prepare for Java interviews...
Read: http://www.java67.com/2015/06/20-java-arraylist-interview-questions.html
8 551
How to Convert Stream to ArrayList in Java 8 - Collectors.toCollection() Example
You can use Collectors.toList(), toSet(), and toMap() to get all elements of Stream into any Collection like List, Set or Map, but if you want to get a particular collection e.g. ArrayList, then you...
Read: http://www.java67.com/2016/03/how-to-get-arraylist-from-stream-in-java8-example.html
8 551
Article: Introduction to Apache Beam Using Java
By Fabio Hiroki
Read: https://www.infoq.com/articles/apache-beam-intro/
8 551
Прокачиваем kotlin: используем AST лямбд в рантайме
История о том, как сделать свой LINQ для kotlin, и как сделать так, чтобы кода вида
data.filter { it.age > 30}.map { it.name }.toList()
мог и выполняться для данных в памяти, и превращаться в SQL запрос для базы данных.
Читать: https://habr.com/ru/post/669694/?utm_campaign=6696948 551
Java News Roundup: JEP 428, MicroStream Joins Micronaut Foundation, Spring and Apache Groovy Updates
This week's Java roundup for May 30th, 2022 features news from OpenJDK, JDK 19, Spring Shell 2.1.0-M4, Spring Native 0.12.0, Spring Cloud Stream Applications 2021.1.2, end-of-life for Spring Security OAuth, Micronaut 3.5.1, Quarkus 2.7.6.Final, Apache Groovy versions 3.0.11 and 2.5.17, JobRunr 5.1.3 and MicroStream joins the Micronaut Foundation.
By Michael Redlich
Read: https://www.infoq.com/news/2022/06/java-news-roundup-may30-2022/
8 551
3 Examples to Loop over a List in Java - ArrayList, LinkedList or Vector
3 ways to Loop through a List in JavaThere are multiple ways to traverse or loop through a List in Java e.g. by using an Iterator, by using an enhanced for loop of Java 5, and not the forEach()...
Read: http://www.java67.com/2012/07/how-to-iterate-loop-traverse-list-java.html
8 551
RegularEnumSet vs JumboEnumSet in Java
Hello guys, the difference between RegularEnumSet and JumboEnumSet in Java was asked in a recent Java interview with one of my friends, unfortunately, he hasn't explored this topic well and...
Read: http://www.java67.com/2021/05/regularenumset-vs-jumboenumset-in-java.html
8 551
Top 5 Courses to Learn Agile and Scrum Methods in 2022 - Best of Lot
If you are a programmer, software developer, team lead, or project manager who wants to learn Agile and Scrum in 2022 and looking for the best Agile courses, then you have come to the right place....
Read: http://www.java67.com/2020/10/best-agile-and-scrum-courses-for-programmers-developers.html
8 551
Top 7 Online Courses to Learn Python in 2022 - Best of Lot
Hello guys, if you want to learn Python programming language in 2022 and are looking for the best Python courses, you have come right. There are a lot of resources to learn Python on the web,...
Read: http://www.java67.com/2020/05/top-5-courses-to-learn-python-in-depth.html
8 551
Теперь можно стать Java-разработчиком даже без гроша в кармане
Ребята из Kata Academy запустили курс Java-разработки с оплатой после гарантированного трудоустройства, чтобы ваши желания совпадали с вашими возможностями. За 5 лет они уже выпустили и трудоустроили более 600 человек, теперь настала ваша очередь.
Следующий поток стартует уже 27 июня. Подробная информация и запись на поток тут: https://tprg.ru/fKq7
Это #партнёрский пост
8 551
Top 20 Project Management Interview Questions Answers for 2 to 5 Years Experienced
Hello guys, if you are preparing for project manager interview and looking for frequently asked Project Management interview questions with Answers then you have come to the right place. In the past,...
Read: http://www.java67.com/2022/06/project-management-interview-questions.html
8 551
Top Java Blogs Weekly: Best of 24/2022
Best of Top Java Blogs, year 2022, week 24
Read: https://www.topjavablogs.com/news/best-of-24-2022
8 551
Top 20 Agile and Scrum Interview Questions with Answers for 2 to 4 Years Experienced
Before we get to the all-important interview questions that will help you land your dream software job, let me tell you something about Agile and Scrum. Agile Scrum is actually one of the best...
Read: http://www.java67.com/2022/06/top-20-agile-and-scrum-interview.html
8 551
Пройдите хардовый тест на знание синтаксиса веб-приложений и займите место в группе со скидкой 20% по промокоду
scalapromo1
Ссылка на тест - https://otus.pw/Y7eYk/
Весь Scala-стек технологий для создания веб-сервисов в одном месте. Освойте функкциональное программирование на Scala и его мощные библиотеки на онлайн-курсе OTUS «Scala Developer».
После курса вы сможете:
— Использовать приемы функционального программирования.
— Создавать приложения на основе функционального подхода.
— Проектировать микросервисы с использованием CQRS/ES.
— Создавать модульные тесты на основе инвариантов
Это #партнёрский пост
Available now! Telegram Research 2025 — the year's key insights 
