JIYIK CN >

Current Location:Home > Learning >

All

>> operator in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

This guide will introduce you to the operator in Java . To understand this concept, you need to be familiar with some lower-level computing concepts. For example, bits, bytes, etc. Let's take a deeper look. Operators in Java In Java, the op...

Full

Arrow operator in Java ->

Publish Date:2025/04/14 Author:JIYIK Category:Java

This tutorial explains - the role of the arrow operator ( ) in Java and lists some sample code to understand the topic. In Java 8, a new feature lambda expression was added, and the arrow operator appeared in Java to form lambda expressions...

Full

How to compare characters for equality in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

This tutorial shows you how to check if two characters are equal in Java. In Java, we can use the equals( == ) operator or the Character compare() equals() method of the Character class to compare two characters. If you are working with pri...

Full

Mutex Locks in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

In the field of computer science, mutual exclusion or mutex is known as the property of concurrency control. Every computer uses a minimum sequence of program instructions called a thread. At a time, the computer works on one thread. For be...

Full

Difference between size and length in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

This tutorial explains the difference between size and length in Java. We have also listed some sample codes to help you understand the topic. Java has a size() method and a length property. Beginners may think that they are interchangeable...

Full

Get user home directory in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

This tutorial explains how to get the user's home directory in Java and lists some sample code to guide you through the topic. For a multi-user operating system, each user has a file system directory; this directory is called the user's hom...

Full

Updating Hashmap Values in Java

Publish Date:2025/04/14 Author:JIYIK Category:Java

This article explains how to use the two methods contained in the HashMap class in Java - update put() and replace() update the values ​​in a HashMap. hashmap.put() Update the value in Hashmap in Java using When we want to HashMap inser...

Full

Using onclick to execute a PHP function

Publish Date:2025/04/13 Author:JIYIK Category:PHP

We will also introduce another onclick() method of executing PHP functions through events using the jQuery library. This method calls a JavaScript function that will output the content of the PHP function in the web page. We will also demon...

Full

Redirection in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

header() We will demonstrate another way to redirect a page in PHP using the function by sending an HTTP header to the browser . This method uses the built-in header() function in PHP, which takes Location as a parameter, and its value is t...

Full

Getting headers in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

HTTP headers carry data between web servers and browsers for communication. Whenever we enter a URL in the address bar of our browser, it sends an HTTP request to the server; it contains a header. In PHP use get_headers() get the headers fo...

Full

Checking for numeric characters in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

This tutorial will discuss different ways to check for numeric characters in PHP. We will use regular expressions and built-in functions in PHP. The functions we will use are ctype_digit , preg_match , , strpos , is_numeric and filter_var ....

Full

Formatting a number as a dollar amount in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

This article will cover different ways to format numbers as dollar amounts in PHP with examples. These include: number_format NumberFormatter::formatCurrency Regular expressions Manual format We'll also look at why money_format the function...

Full

Determining the referer in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

Determining the referer in PHP

$_SERVER['HTTP_REFERER'] Provides us with a referrer URL to determine the user request on the server. However, this is not a best practice because the referrer can be HTTP compromised through . $_SESSION[] Determine the referrer in PHP usin...

Full

Setting PHP_AUTH_USER and PHP_AUTH_PW in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

curl This article will show you how to use Requests in PHP to set PHP_AUTH_USER and PHP_AUTH_PW and use Requests through the command line curl . It will also show you how to confirm that the values ​​of PHP_AUTH_USER and PHP_AUTH_PW hav...

Full

Implementing multithreading in PHP

Publish Date:2025/04/13 Author:JIYIK Category:PHP

Multithreading is a form of program execution in which a single process creates multiple threads and they execute simultaneously. This tutorial will discuss multithreading in PHP and show you how to implement it. Parallel Implementing multi...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial