ar
Feedback
Чашечка Java

Чашечка Java

الذهاب إلى القناة على Telegram

Лучшие материалы по Java на русском и английском Разместить рекламу: @tproger_sales_bot Правила общения: https://tprg.ru/rules Другие каналы: @tproger_channels

إظهار المزيد
8 553
المشتركون
+524 ساعات
-87 أيام
-2730 أيام
أرشيف المشاركات
How to find Factorial in Java using Recursion and Iteration - Example Tutorial Hello guys, if you are looking for a Java program to calculate factorial with and without recursion then you have come to the right place. Factorial is a common programming exercise that is great to learn to code and how to program. When I teach Java to new people, I often start with coding problems like prime numbers, Fibonacci series, and factorial because they help you to develop a coding sense and teach you how to write a program initially. In order to calculate factorial, you just need to know the factorial concepts from Mathematics, and rest I will explain this simple Java programming tutorial. Java Interview questions and tutorials Read: http://www.java67.com/2015/09/factorial-in-java-using-recursion-and-loop.html

Стать полноценным Java-бойцом c нуля за 3 месяца возможно OTUS запускает буткемп «Java Developer»! В основе буткемпа — методика ускоренного обучения, построенная на ежедневных вебинарах с ведущими специалистами престижных IT-компаний. А еще много-много практики. Что вам даст буткемп? - фундамент практических навыков для позиции Junior+; - опыт решения реальных задачи и работы в команде; - первый проектный опыт; - шанс пройти оплачиваемую стажировку в IT-компании; - практику прохождения собеседований и помощь с трудоустройством. После обучения у вас будет достаточно навыков, чтобы претендовать на среднюю по рынку зарплату в 105 тысяч рублей. Что нужно, чтобы участвовать? - 8 часов, четыре дня в неделю - три свободных месяца, начиная с 30 августа - современный ПК с выходом в интернет, камера и Zoom Заявка на участие по специальной цене: https://otus.pw/TFUp/ Это #партнёрский пост

Производительность: нюансы против очевидностей. JDK edition Привет, это продолжение статьи, в которой я разбирал разные неочевидные вещи из мира производительности. В этот раз будем копать ещё глубже, хоть и начнём с относительно простых примеров. И да, в этой статье будет много интересного про строки. Да, несмотря на "Катехихис j.l.String", "The Lord of the Strings: Two Scours" и несколько моих статей (раз, два, три, четыре) там всё ещё есть куда копать :) Читать: https://habr.com/ru/post/672146/?utm_campaign=672146

10 Examples of ArrayList in Java for Beginners ArrayList Example in Java In this Java ArrayList Example, we will see how to a
10 Examples of ArrayList in Java for Beginners ArrayList Example in Java In this Java ArrayList Example, we will see how to add elements in ArrayList, how to remove elements from ArrayList, ArrayList contains Example, and several other ArrayList functions which we use daily. ArrayList is one of the most popular classes from the Java Collection framework along with HashSet and HashMap and a good understanding of the ArrayList class and methods is imperative for Java developers. ArrayList is an implementation of List Collection which is ordered and allows duplicates. Java Interview questions and tutorials Read: http://www.java67.com/2022/03/10-examples-of-arraylist-in-java.html

Современная серверная разработка на языке Java: 2. Архитектура серверного приложения В этой части мы создадим работоспособный микросервис, придерживаясь правильной архитектуры, которая обеспечивает качества, важные для промышленного проекта: гибкость, простота внесения доработок и исправления ошибок, масштабируемость. Читать: https://habr.com/ru/post/677614/?utm_campaign=677614

Функциональные интерфейсы в Java 8 → Consumer, Supplier, Predicate и Function. Что к чему и зачем нужны Java представила поддержку функционального программирования в выпуске Java версии 8. В этой статье мы разбираем несколько функциональных интерфейсов, а именно: Потребитель (Consumer), Поставщик (Supplier), Предикат (Predicat) и Функция (Function), которые являются наиболее важными. Читать: https://habr.com/ru/post/677610/?utm_campaign=677610

Учитесь программировать на курсе «Профессия Java-разработчик» Всего за 9 месяцев вы пройдёте путь от новичка до junior-специалиста и сможете зарабатывать до 100 000 рублей уже в начале карьеры. Вы с нуля освоите Java, SQL, Spring и Git. Создадите поисковый движок для портфолио и примете участие в командной стажировке — вместе с другими участниками курса и тимлидом разработаете социальную сеть. Бонусы для участников курса: — первые полгода — бесплатно; — через 4 месяца сможете устроиться junior-разработчиком; — удобная рассрочка и скидка; — гарантия трудоустройства от Центра карьеры Skillbox. Если вы не выйдете на работу, мы вернём вам деньги за курс; — год бесплатного английского. Также для IT-специалистов действуют специальные плюшки от государства! Переходите по ссылке, чтобы узнать подробности и оставить заявку на курс: https://clc.to/Rmho-A Это #партнёрский пост

Kafka и Chronicle Queue Хотя облачные сервисы удобны и гибки, эксплуатационные затраты на приложения, развёрнутые в облаке, иногда могут быть существенными. В этой статье мы расскажем о способе существенного снижения эксплуатационных затрат в чувствительных к задержке Java-приложений с Event-Driven Architecture (EDA) при помощи миграции с Kafka на Chronicle Queue — опенсорсной, более эффективно использующей ресурсы реализации очереди с пониженной задержкой. Что такое EDA? EDA-приложение — это распределённое приложение, в котором выполняется создание, распознавание и потребление событий (в виде сообщений или DTO), а также реагирование на них. «Распределённое» означает, что приложение может выполняться на разных машинах или на одной машине, но в отдельных процессах или потоках. В этой статье используется последний вариант, а сообщения сохраняются в очередях. Читать: https://habr.com/ru/post/677454/?utm_campaign=677454

Article: Gatling vs JMeter - What to Use for Performance Testing A performance tool with a graphical interface will probably
Article: Gatling vs JMeter - What to Use for Performance Testing A performance tool with a graphical interface will probably be easier to use at the beginning, but the idea of a performance test as code is the future. Tests are readable and much easier to maintain. Many people are skeptical about Gatling because it requires learning a new programming language - Scala. However, Java is supported with the release of Gatling 3.7. By Andrzej Ludwikowski Read: https://www.infoq.com/articles/performance-testing/

Kafka и Chronicle Queue Хотя облачные сервисы удобны и гибки, эксплуатационные затраты на приложения, развёрнутые в облаке, иногда могут быть существенными. В этой статье мы расскажем о способе существенного снижения эксплуатационных затрат в чувствительных к задержке Java-приложений с Event-Driven Architecture (EDA) при помощи миграции с Kafka на Chronicle Queue — опенсорсной, более эффективно использующей ресурсы реализации очереди с пониженной задержкой. Что такое EDA? EDA-приложение — это распределённое приложение, в котором выполняется создание, распознавание и потребление событий (в виде сообщений или DTO), а также реагирование на них. «Распределённое» означает, что приложение может выполняться на разных машинах или на одной машине, но в отдельных процессах или потоках. В этой статье используется последний вариант, а сообщения сохраняются в очередях. Читать: https://habr.com/ru/post/676804/?utm_campaign=676804

How to check If two Strings Array are equal in Java? Example Tutorial Hello guys, if you are wondering how to check if two gi
How to check If two Strings Array are equal in Java? Example Tutorial Hello guys, if you are wondering how to check if two given String array are equal, I mean they contain same number of elements with same values and looking for solution then you have come to the right place. In the past, I have shared several coding questions on different data structures like linked list, binary tree, string, and even system design and today, we shall be working with arrays, Oh arrays are so pretty! And it’s very simple to learn. Having understood the concept of arrays the goal is to be able to check if two String arrays are equivalent. Java Interview questions and tutorials Read: http://www.java67.com/2022/01/how-to-check-if-two-strings-array-are.html

How to use WeakHashMap in Java? Example Tutorial Hello friends, we are here today again on our journey to Java. I hope everyone is fine and ready to board our train of knowledge. Today we are gonna learn something very interesting and very exciting. Today's topic will definitely be very useful in coding and programming. This topic would surely decrease your time complexity, and space requirements for any task very significantly :p So what's the wait? Let's start! As always, we will start understanding today's topic by a scenario. But, before that, you guys must know what a HashMap is. So, go through the HashMap article before jumping on this one, and you will get a better understanding of today's article. For the guys who have already gone through HashMap before, let me give a brief intro and what a HashMap is so we all can refresh the topic easily. Java Interview questions and tutorials Read: http://www.java67.com/2021/10/how-to-use-weakhashmap-in-java-example.html

photo content

What is Diamond operator in Java? Example Tutorial The Diamond operator is a relatively new operator in Java which was first
What is Diamond operator in Java? Example Tutorial The Diamond operator is a relatively new operator in Java which was first introduced in JDK 7  to improve type inference and reduce boilerplate Java coding. It is denoted with a closed angle bracket that resembles the shape of adiamond () and that's why it's called the Diamond operator. If used correctly it can reduce typing and boilerplate coding in Java and result in much cleaner and readable code especially when you use Generics. Java Interview questions and tutorials Read: http://www.java67.com/2021/09/what-is-diamond-operator-in-java-how.html

How to Join and Merge Two ArrayLists in Java - Example Tutorial You can use the addAll() method from java.util.Collection int
How to Join and Merge Two ArrayLists in Java - Example Tutorial You can use the addAll() method from java.util.Collection interface to join two ArrayLists in Java. Since ArrayList implements List interface which actually extends the Collection interface, this method is available to all List implementations including ArrayList e.g. Vector, LinkedList. The Collection.addAll(Collection src) method takes a collection and adds all elements from it to the collection which calls this method like target.addAll(source). After this call, the target will have all elements from both source and target ArrayList, which is like joining two ArrayList in Java. Java Interview questions and tutorials Read: http://www.java67.com/2016/07/how-to-join-two-arraylist-in-java.html

What is Iterator in Java? Example Hello guys, if you are wondering what is Iterator in Java and how does it work? when you ar
What is Iterator in Java? Example Hello guys, if you are wondering what is Iterator in Java and how does it work? when you are supposed to use Iterator and what advantages or disadvantages it provide over other methods of iterating over Java Collections then you have come to the right place. In the past, I have shared how HashMap works in Javaand How Garbage collection worksand in this article, I am going to share how Iterator works and how they simplify iteration irrespective of different collection types. You all may know about Java collections. It has many lists, maps, etc in it. Now, you may know how to use the inbuilt LinkedList or any other collection, but once that collection is built, how will you iterate over it? I know you all are thinking of loops. Java Interview questions and tutorials Read: http://www.java67.com/2022/04/what-is-iterator-in-java-example.html

Difference between 32-bit vs 64-bit JVM in Java? Hello Java Programmers, if you want to learn Java virtual Machine in-depth a
Difference between 32-bit vs 64-bit JVM in Java? Hello Java Programmers, if you want to learn Java virtual Machine in-depth and wondering what is the difference between a 32-bit and 64-bit JVM and which one should you use and why? then you have come to the right place. Earlier, I have shared the best JVM booksand online JVM coursesand in this article, I am going to talk about 32-bit vs 64-bit JVM and their pros and cons. This is also a common Java interview question for beginners and intermediate Java programmers. I have tried to answer this question to the point that's why this article is a short but informative one. You will find out what they are, how they are different, how much heap size, and the pros and cons of each of them. Java Interview questions and tutorials Read: http://www.java67.com/2019/12/difference-between-32-bit-vs-64-bit-jvm.html

CWE Top 25 2022. Обзор изменений Список CWE Top 25 отражает наиболее серьёзные недостатки безопасности ПО. Предлагаю вам ознакомиться с обновлённым топом в обзоре изменений за прошедший год. Читать: https://habr.com/ru/post/677440/?utm_campaign=677440

Java News Roundup: Microsoft Joins MicroProfile and Jakarta EE, GlassFish, Payara, Micronaut This week's Java roundup for Jul
Java News Roundup: Microsoft Joins MicroProfile and Jakarta EE, GlassFish, Payara, Micronaut This week's Java roundup for July 11th, 2022, features news from JDK 19, JDK 20, Microsoft joins MicroProfile and Jakarta EE working groups, Jakarta EE 10 update, Spring updates, Payara Enterprise 5.41.0, GlassFish 7.0-M7, Micronaut 3.5.3, Hibernate Search 6.2.Alpha1, Native Build Tools 0.9.13, Project Reactor 2022.0.0-M4, Piranha 22.7.0, PrimeFaces updates, JobRunr 5.1.5 and Tomcat Native 2.0.1. By Michael Redlich Read: https://www.infoq.com/news/2022/07/java-news-roundup-jul11-2022/

Чашечка Java - إحصائيات وتحليلات قناة تيليجرام @a_cup_of_java