search
HomeBackend DevelopmentPHP Tutorialjava学习漫笔- 捣蛋vector

java学习随笔--- 捣蛋vector

 

最近比较有时间啦,有时间搞下java,个人觉得学这门语言语法太多啦,不一一去学习啦,心血来潮,挂了个struct2的源代码,一入深似海啊,看得我天花缭乱,从最简单的开始吧

 

<span style="color: #008080;"> 1</span> <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">static</span> <span style="color: #0000ff;">void</span><span style="color: #000000;"> main(String[] args) {</span><span style="color: #008080;"> 2</span>         <span style="color: #008080;"> 3</span>         Vector v = <span style="color: #0000ff;">new</span> Vector(4<span style="color: #000000;">);</span><span style="color: #008080;"> 4</span> <span style="color: #008080;"> 5</span>         <span style="color: #008000;">//</span><span style="color: #008000;">向Vector中添加元素 静态数组+动态扩展</span><span style="color: #008080;"> 6</span>         <span style="color: #008000;">//</span><span style="color: #008000;">使用add方法直接添加元素 </span><span style="color: #008080;"> 7</span>         v.add("Test0"<span style="color: #000000;">); </span><span style="color: #008080;"> 8</span>         v.add("Test1"<span style="color: #000000;">); </span><span style="color: #008080;"> 9</span>         v.add("Test0"<span style="color: #000000;">); </span><span style="color: #008080;">10</span>         v.add("Test2"<span style="color: #000000;">); </span><span style="color: #008080;">11</span>         v.add("Test2"<span style="color: #000000;">);</span><span style="color: #008080;">12</span> <span style="color: #008080;">13</span>         <span style="color: #008000;">//</span><span style="color: #008000;">从Vector中删除元素 </span><span style="color: #008080;">14</span>         v.remove("Test0"); <span style="color: #008000;">//</span><span style="color: #008000;">删除指定内容的元素 </span><span style="color: #008080;">15</span>         v.remove(0); <span style="color: #008000;">//</span><span style="color: #008000;">按照索引号删除元素</span><span style="color: #008080;">16</span> <span style="color: #008080;">17</span>         <span style="color: #008000;">//</span><span style="color: #008000;">获得Vector中已有元素的个数 </span><span style="color: #008080;">18</span>         <span style="color: #0000ff;">int</span> size =<span style="color: #000000;"> v.size(); </span><span style="color: #008080;">19</span>         System.out.println("size:" +<span style="color: #000000;"> size);</span><span style="color: #008080;">20</span> <span style="color: #008080;">21</span>         <span style="color: #008000;">//</span><span style="color: #008000;">遍历Vector中的元素 </span><span style="color: #008080;">22</span>         <span style="color: #0000ff;">for</span>(<span style="color: #0000ff;">int</span> i = 0;i ){ <span style="color: #008080;">23</span> <span style="color: #000000;">        System.out.println(v.get(i)); </span><span style="color: #008080;">24</span> <span style="color: #000000;">        } </span><span style="color: #008080;">25</span> }

代码很简单啦,学过数据结构的都知道,简单的新增改查啦,不过我们要深入一下了解,这玩意跟数组有什么区别

构造函数如下,意思是说你可以初始化一个容量的数,多少你自己决定

<span style="color: #008080;"> 1</span>  <span style="color: #008000;">/**</span><span style="color: #008080;"> 2</span> <span style="color: #008000;">     * Constructs an empty vector with the specified initial capacity and</span><span style="color: #008080;"> 3</span> <span style="color: #008000;">     * with its capacity increment equal to zero.</span><span style="color: #008080;"> 4</span> <span style="color: #008000;">     *</span><span style="color: #008080;"> 5</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@param</span><span style="color: #008000;">   initialCapacity   the initial capacity of the vector</span><span style="color: #008080;"> 6</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@throws</span><span style="color: #008000;"> IllegalArgumentException if the specified initial capacity</span><span style="color: #008080;"> 7</span> <span style="color: #008000;">     *         is negative</span><span style="color: #008080;"> 8</span>      <span style="color: #008000;">*/</span><span style="color: #008080;"> 9</span>     <span style="color: #0000ff;">public</span> Vector(<span style="color: #0000ff;">int</span><span style="color: #000000;"> initialCapacity) {</span><span style="color: #008080;">10</span>     <span style="color: #0000ff;">this</span>(initialCapacity, 0<span style="color: #000000;">);</span><span style="color: #008080;">11</span>     }

 

我们接着来看,java的构造函数可真的比php强大,支持不同参数调用,换php的话早就报错啦

<span style="color: #008080;"> 1</span>     <span style="color: #008000;">/**</span><span style="color: #008080;"> 2</span> <span style="color: #008000;">     * Constructs an empty vector with the specified initial capacity and</span><span style="color: #008080;"> 3</span> <span style="color: #008000;">     * capacity increment.</span><span style="color: #008080;"> 4</span> <span style="color: #008000;">     *</span><span style="color: #008080;"> 5</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@param</span><span style="color: #008000;">   initialCapacity     the initial capacity of the vector</span><span style="color: #008080;"> 6</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@param</span><span style="color: #008000;">   capacityIncrement   the amount by which the capacity is</span><span style="color: #008080;"> 7</span> <span style="color: #008000;">     *                              increased when the vector overflows</span><span style="color: #008080;"> 8</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@throws</span><span style="color: #008000;"> IllegalArgumentException if the specified initial capacity</span><span style="color: #008080;"> 9</span> <span style="color: #008000;">     *         is negative</span><span style="color: #008080;">10</span>      <span style="color: #008000;">*/</span><span style="color: #008080;">11</span>     <span style="color: #0000ff;">public</span> Vector(<span style="color: #0000ff;">int</span> initialCapacity, <span style="color: #0000ff;">int</span><span style="color: #000000;"> capacityIncrement) {</span><span style="color: #008080;">12</span>     <span style="color: #0000ff;">super</span><span style="color: #000000;">();</span><span style="color: #008080;">13</span>         <span style="color: #0000ff;">if</span> (initialCapacity )<span style="color: #008080;">14</span>             <span style="color: #0000ff;">throw</span> <span style="color: #0000ff;">new</span> IllegalArgumentException("Illegal Capacity: "+<span style="color: #008080;">15</span> <span style="color: #000000;">                                               initialCapacity);</span><span style="color: #008080;">16</span>     <span style="color: #0000ff;">this</span>.elementData = <span style="color: #0000ff;">new</span><span style="color: #000000;"> Object[initialCapacity];</span><span style="color: #008080;">17</span>     <span style="color: #0000ff;">this</span>.capacityIncrement =<span style="color: #000000;"> capacityIncrement;</span><span style="color: #008080;">18</span>     }

代码是不是很简单,简单的初始化一个对象数组,连我一个高中生的看出来啦,注意到第二个参数,这个是控制数组填满了之后要怎么增加,可以理解为一个策略吧

我们来看看添加元素是怎样实现的

<span style="color: #008080;"> 1</span>   <span style="color: #008000;">/**</span><span style="color: #008080;"> 2</span> <span style="color: #008000;">     * Appends the specified element to the end of this Vector.</span><span style="color: #008080;"> 3</span> <span style="color: #008000;">     *</span><span style="color: #008080;"> 4</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@param</span><span style="color: #008000;"> e element to be appended to this Vector</span><span style="color: #008080;"> 5</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@return</span><span style="color: #008000;"> {</span><span style="color: #808080;">@code</span><span style="color: #008000;"> true} (as specified by {</span><span style="color: #808080;">@link</span><span style="color: #008000;"> Collection#add})</span><span style="color: #008080;"> 6</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@since</span><span style="color: #008000;"> 1.2</span><span style="color: #008080;"> 7</span>      <span style="color: #008000;">*/</span><span style="color: #008080;"> 8</span>     <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">synchronized</span> <span style="color: #0000ff;">boolean</span><span style="color: #000000;"> add(E e) {</span><span style="color: #008080;"> 9</span>     modCount++<span style="color: #000000;">;</span><span style="color: #008080;">10</span>     ensureCapacityHelper(elementCount + 1<span style="color: #000000;">);</span><span style="color: #008080;">11</span>     elementData[elementCount++] =<span style="color: #000000;"> e;</span><span style="color: #008080;">12</span>         <span style="color: #0000ff;">return</span> <span style="color: #0000ff;">true</span><span style="color: #000000;">;</span><span style="color: #008080;">13</span>     }
<span style="font-size: 14px;">synchronized 这玩意就是多线程安全的时候用的,防止多个线程同事操作</span><br><br><span style="font-size: 14px;">关键是 ensureCapacityHelper  这个函数<br><br></span>
<span style="color: #008080;"> 1</span> <span style="color: #008000;">/**</span><span style="color: #008080;"> 2</span> <span style="color: #008000;">     * This implements the unsynchronized semantics of ensureCapacity.</span><span style="color: #008080;"> 3</span> <span style="color: #008000;">     * Synchronized methods in this class can internally call this</span><span style="color: #008080;"> 4</span> <span style="color: #008000;">     * method for ensuring capacity without incurring the cost of an</span><span style="color: #008080;"> 5</span> <span style="color: #008000;">     * extra synchronization.</span><span style="color: #008080;"> 6</span> <span style="color: #008000;">     *</span><span style="color: #008080;"> 7</span> <span style="color: #008000;">     * </span><span style="color: #808080;">@see</span><span style="color: #008000;"> #ensureCapacity(int)</span><span style="color: #008080;"> 8</span>      <span style="color: #008000;">*/</span><span style="color: #008080;"> 9</span>     <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> ensureCapacityHelper(<span style="color: #0000ff;">int</span><span style="color: #000000;"> minCapacity) {</span><span style="color: #008080;">10</span>     <span style="color: #0000ff;">int</span> oldCapacity =<span style="color: #000000;"> elementData.length;</span><span style="color: #008080;">11</span>     <span style="color: #0000ff;">if</span> (minCapacity ><span style="color: #000000;"> oldCapacity) {</span><span style="color: #008080;">12</span>         Object[] oldData =<span style="color: #000000;"> elementData;</span><span style="color: #008080;">13</span>         <span style="color: #0000ff;">int</span> newCapacity = (capacityIncrement > 0) ?<span style="color: #008080;">14</span>         (oldCapacity + capacityIncrement) : (oldCapacity * 2<span style="color: #000000;">);</span><span style="color: #008080;">15</span>             <span style="color: #0000ff;">if</span> (newCapacity  minCapacity) {<span style="color: #008080;">16</span>         newCapacity =<span style="color: #000000;"> minCapacity;</span><span style="color: #008080;">17</span> <span style="color: #000000;">        }</span><span style="color: #008080;">18</span>             elementData =<span style="color: #000000;"> Arrays.copyOf(elementData, newCapacity);</span><span style="color: #008080;">19</span> <span style="color: #000000;">    }</span><span style="color: #008080;">20</span>     }

 

<span style="font-size: 14px;"><br>可以这么理解吧,上面这段代码就是看看数组满了没有,如果满了就动态的增加,还记得我们上面说的那个参数吗,就是可以理解为扩展因子,如果没有定义的话就double增加,就是这么简单,貌似跟c语言的动态数组好像啊<br><br>总结一下<br><br>上面我们学到的知识点<br><br></span>
1. synchronized  同步用的,相当于一个锁吧
<span><br>2. Arrays.copyOf 这函数是从一个数组复制到一个新数组里面,新数组容量可以自己定义<br><br>3. java 的构造函数可以支持多个,前提你每个构造函数的参数都不同<br><br>4. vector 这东西跟数组没什么区别,只不过它比静态数组可以自动扩展罢了<br>今天就到这里吧</span>
<span><br><br></span>
<span style="font-size: 14px;"><br><br></span>

 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Explain the concept of a PHP session in simple terms.Explain the concept of a PHP session in simple terms.Apr 26, 2025 am 12:09 AM

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

How do you loop through all the values stored in a PHP session?How do you loop through all the values stored in a PHP session?Apr 26, 2025 am 12:06 AM

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

Explain how to use sessions for user authentication.Explain how to use sessions for user authentication.Apr 26, 2025 am 12:04 AM

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.

Give an example of how to store a user's name in a PHP session.Give an example of how to store a user's name in a PHP session.Apr 26, 2025 am 12:03 AM

Tostoreauser'snameinaPHPsession,startthesessionwithsession_start(),thenassignthenameto$_SESSION['username'].1)Usesession_start()toinitializethesession.2)Assigntheuser'snameto$_SESSION['username'].Thisallowsyoutoaccessthenameacrossmultiplepages,enhanc

What are some common problems that can cause PHP sessions to fail?What are some common problems that can cause PHP sessions to fail?Apr 25, 2025 am 12:16 AM

Reasons for PHPSession failure include configuration errors, cookie issues, and session expiration. 1. Configuration error: Check and set the correct session.save_path. 2.Cookie problem: Make sure the cookie is set correctly. 3.Session expires: Adjust session.gc_maxlifetime value to extend session time.

How do you debug session-related issues in PHP?How do you debug session-related issues in PHP?Apr 25, 2025 am 12:12 AM

Methods to debug session problems in PHP include: 1. Check whether the session is started correctly; 2. Verify the delivery of the session ID; 3. Check the storage and reading of session data; 4. Check the server configuration. By outputting session ID and data, viewing session file content, etc., you can effectively diagnose and solve session-related problems.

What happens if session_start() is called multiple times?What happens if session_start() is called multiple times?Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

How do you configure the session lifetime in PHP?How do you configure the session lifetime in PHP?Apr 25, 2025 am 12:05 AM

Configuring the session lifecycle in PHP can be achieved by setting session.gc_maxlifetime and session.cookie_lifetime. 1) session.gc_maxlifetime controls the survival time of server-side session data, 2) session.cookie_lifetime controls the life cycle of client cookies. When set to 0, the cookie expires when the browser is closed.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.