JIYIK CN >

Current Location:Home > Learning > PROGRAM >

All

Using jQuery and TypeScript

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

This article provides the basic understanding and concepts of using jQuery with TypeScript. It guides on how to use jQuery in TypeScript through a coding example and outputs using various methods in TypeScript and provides knowledge about w...

Full

Update TypeScript to the latest version using NPM

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

This article provides a guide to update to the latest version of TypeScript using npm, which is the best and most popular method used by developers. This also gives us an in-depth look at what npm is and why to use it. Node Package Manager...

Full

Convert JSON object to a class in TypeScript

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

Data on the internet flows in the form of strings, which can be converted into a very popular format called JSON. The JSON representation of this data usually represents an object or even a class in TypeScript. TypeScript provides the abili...

Full

Handling exceptions with try..catch..finally in TypeScript

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

This article will discuss try..catch..finally handling exceptions in TypeScript using the statement. Handling exceptions in TypeScript In TypeScript, try..catch..finally a block handles exceptions that occur during program runtime. It allow...

Full

Getting the host name in Java

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

In this tutorial, we will see how to get the IP address and host name using Java API. InetAddress Get the host name in Java using The package java.net contains classes for handling the IP address and host name of the current machine InetAdd...

Full

Get resource URL and content in Java

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

getResource() This tutorial will demonstrate how to use the function to get the resource URL and read the resource file in Java . getResource() Use the function to get the resource URL in Java We will use the method in Java getResource() to...

Full

Detecting EOF in Java

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

In this tutorial, we will see how to while detect EOF( End OF File ) in Java using a loop. We will also discuss developing a program that continues reading content until it reaches the end of a file. From a programming perspective, EOF is a...

Full

Increasing the heap space in Java

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

In Java, the heap space is mainly used for garbage collection and allocating memory for objects. A default heap space is allocated when JVM is installed on our machine, but it may be different. The following points show how we can increase...

Full

Implementing a Min Heap in Java

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

A min heap is a heap in which every internal node is less than or equal to the value of its child nodes. We will see in the following points how to implement a min heap with and without using a library. Minimal heap implementation in Java w...

Full

Implementing a min-max heap in Java

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

In this article, we will implement a max heap and a min heap using PriorityQueue the class. We will also demonstrate inserting and removing elements from the heap. Introduction to Min-Max Heap in Java Heap is a tree-based data structure, wh...

Full

Calendar date in YYYY-MM-DD format in Java

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

Java Date encapsulates the current time and date. The Date class does this with the help of two constructors - Date() and Date(long millisec) constructor. We use Date() the constructor to initialize the object with the current time and date...

Full

Java Change Date Format

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

There are various options available for converting date string to date format. The methods mentioned below can bring the desired result. Let us understand the various ways from the following code block. import java.text.ParseException ; imp...

Full

console.log in Java

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

This tutorial explains the function in Java console.log() and how to display logs to the console in Java. console.log() is a function in JavaScript that is used to display log messages to the browser console. There is no such message in Jav...

Full

How to clear the console in Java

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

In this tutorial, we will look at two ways to clear the console screen in Java. We will learn how to execute Java clear screen commands at runtime through examples. Clearing the console using ANSI escape codes in Java We can use special cod...

Full

Class file editor in Java

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

In this article, we will discuss Java Class File Editor, a tool created in Java to edit Java compiled classes. We can decompile Java classes after creating them and view them, but we need a tool like Java Class File Editor to modify them. F...

Full

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial