Home> Network programming tutorial
All ASP tutorial ASP tutorial ASP.NET tutorial PHP tutorial JSP tutorial C#/CSHARP tutorial XML tutorial Ajax tutorial Perl tutorial Shell tutorial Visual Basic tutorial Delphi tutorial Mobile development tutorial C/C++ tutorial Java tutorial J2EE/J2ME Software engineering
Network programming tutorial
  • C language strchr() function: Find the position of the first occurrence of a specified character in a string

    C language strchr() function: Find the position of the first occurrence of a specified character in a string

    C language strchr() function: Find the position of the first specified character that appears in a string Function name: strchr Header file:<string.h>Function prototype: char*strchr(constchar*str,charc) ;Function: check...
    2024-11-16
  • C language strcmpi() function: compare the size of two strings

    C language strcmpi() function: compare the size of two strings

    C language strcmpi() function: Compare the size of two strings Function name: strcmpi Header file: <string.h> Function prototype: intstrcmpi(char*str1,char*str2); Function: Compare the size of two strings , but the parameters are not case se
    2024-11-16
  • C language strcspn() function: Find several consecutive characters that do not belong to the string str2

    C language strcspn() function: Find several consecutive characters that do not belong to the string str2

    C language strcspn() function: Find several consecutive characters that do not belong to the string str2. Function name: strcspn header file: <string.h> Function prototype: intstrcspn(char*str1,char*str2); Function : Find several consecutive
    2024-11-16
  • C language strspn() function: Calculate how many consecutive characters in string str1 belong to string str2

    C language strspn() function: Calculate how many consecutive characters in string str1 belong to string str2

    C language strspn() function: Calculate how many consecutive characters in string str1 belong to string str2 Function name: strspn header file: <string.h> Function prototype: intstrspn(char*str1,char*str2); Function : Calculate how many cons
    2024-11-16
  • Detailed explanation of the process of making menu bar in Toolbar

    Detailed explanation of the process of making menu bar in Toolbar

    Article source: Internet Author: ggg82/CSDN Many user interfaces now use toolbars to create menu bars. I recently became interested in this and asked for help online. However, most of the help I received was the source code of BCGControlBar or the source
    2024-11-16
  • Design and implementation of a MIDP Tetris game

    Design and implementation of a MIDP Tetris game

    Article source: csdn Author: Chen Wanfei About the author Chen Wanfei, male, holds a bachelor's degree in mathematics and software from Central South University. He was a senior programmer and system analyst at Beijing Great Wall Software. He has rich
    2024-11-16
  • A brief discussion on assigning subclass objects to parent class objects

    A brief discussion on assigning subclass objects to parent class objects

    Recently, I have some experience in assigning subclass objects to parent class objects, and I would like to share it with you. However, my level is limited, so please correct me and criticize me. Closer to home, here are a few small examples, please take
    2024-11-16
  • Learn Java Swing game design from me (1)

    Learn Java Swing game design from me (1)

    Article Source: Computer Enthusiast Author: Zhang Jian Who knows how much sand and stone was used to build the Tower of Babel? Who knows how many days and nights it took to build Rome? The only thing we know is that without the bricks and stones, there wo
    2024-11-16
  • Top ten tips for connecting to oracle database through JDBC

    Top ten tips for connecting to oracle database through JDBC

    Article source: Database Forum Author: jackma Java Database Connectivity (JDBC) API is a series of interfaces that allow Java programmers to access databases. The interfaces of various developers are not exactly the same. After using Oracle's JDBC for
    2024-11-16
  • Object-Oriented Programming: Abstract Data Types in Java

    Object-Oriented Programming: Abstract Data Types in Java

    Article source: Internet Author: PaleSting/CSDN In this article, we will examine data types in Java, but we will introduce the concept of abstract data types (ADT). We will also learn about some of the ADTs defined by Java by introducing the Java Collecti
    2024-11-16
  • Reasons for choosing Java: Interview with the father of Java

    Reasons for choosing Java: Interview with the father of Java

    Article source: pconline Author: Yu Xiaofu The competition between Microsoft's .NET and SUNone has been going on for a long time, and it is getting more and more intense. Recently, Microsoft's Server2003 event has just concluded. On the morning of
    2024-11-16
  • Learn Java Swing game design from me (2)

    Learn Java Swing game design from me (2)

    Article Source: Computer Enthusiast Author: Zhang Jian Do you still remember the Minicooper who shuttled through the Hollywood traffic like an elf in "Surprise"? Mark Wahlberg and Sally Theron drove it to transport gold worth tens of millions un
    2024-11-16
  • List of new features in J2SE 1.5 version

    List of new features in J2SE 1.5 version

    Source of article: Internet Author: supertoto (translation)/CSDN.Net By the end of 2003, the beta version of J2SE1.5 will be released. This release and the two updates 1.4.1 and 1.4.2 of J2SE 1.4 that have been released now are released as expected at the
    2024-11-16
  • EJB Easy Advancement One

    EJB Easy Advancement One

    Article source: Silicon Valley Power Author: Mainstay 1. Introduction EJB (Enterprise JavaBeans) is a relatively advanced content in Java programming, and it is also the threshold for Java programmers to advance from entry level to expert level. A signifi
    2024-11-16
  • Implementation of Java runtime polymorphism

    Implementation of Java runtime polymorphism

    The output result is: This is B This is C In the above example, class B and class C are two classes that implement the interface InterA. They implement the method fun() of the interface respectively, and assign instances of class B and class C to the inte
    2024-11-16