久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='fyq4o'></bdo><ul id='fyq4o'></ul>
    1. <tfoot id='fyq4o'></tfoot><legend id='fyq4o'><style id='fyq4o'><dir id='fyq4o'><q id='fyq4o'></q></dir></style></legend>
      <i id='fyq4o'><tr id='fyq4o'><dt id='fyq4o'><q id='fyq4o'><span id='fyq4o'><b id='fyq4o'><form id='fyq4o'><ins id='fyq4o'></ins><ul id='fyq4o'></ul><sub id='fyq4o'></sub></form><legend id='fyq4o'></legend><bdo id='fyq4o'><pre id='fyq4o'><center id='fyq4o'></center></pre></bdo></b><th id='fyq4o'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='fyq4o'><tfoot id='fyq4o'></tfoot><dl id='fyq4o'><fieldset id='fyq4o'></fieldset></dl></div>

      1. <small id='fyq4o'></small><noframes id='fyq4o'>

      2. 如何將整數轉換為整數?

        How to convert Integer to int?(如何將整數轉換為整數?)
          <tbody id='5NB4L'></tbody>
        <legend id='5NB4L'><style id='5NB4L'><dir id='5NB4L'><q id='5NB4L'></q></dir></style></legend>
        • <bdo id='5NB4L'></bdo><ul id='5NB4L'></ul>

          <tfoot id='5NB4L'></tfoot>

            <small id='5NB4L'></small><noframes id='5NB4L'>

              <i id='5NB4L'><tr id='5NB4L'><dt id='5NB4L'><q id='5NB4L'><span id='5NB4L'><b id='5NB4L'><form id='5NB4L'><ins id='5NB4L'></ins><ul id='5NB4L'></ul><sub id='5NB4L'></sub></form><legend id='5NB4L'></legend><bdo id='5NB4L'><pre id='5NB4L'><center id='5NB4L'></center></pre></bdo></b><th id='5NB4L'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5NB4L'><tfoot id='5NB4L'></tfoot><dl id='5NB4L'><fieldset id='5NB4L'></fieldset></dl></div>

                  本文介紹了如何將整數轉換為整數?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在開發一個 Web 應用程序,在該應用程序中,數據將在客戶端和客戶端之間傳輸.服務器端.

                  I am working on a web application in which data will be transfer between client & server side.

                  我已經知道 JavaScript int != Java int.因為,Java int 不能為空,對.現在這是我面臨的問題.

                  I already know that JavaScript int != Java int. Because, Java int cannot be null, right. Now this is the problem I am facing.

                  我將我的 Java int 變量更改為 Integer.

                  I changed my Java int variables into Integer.

                  public void aouEmployee(Employee employee) throws SQLException, ClassNotFoundException
                  {
                     Integer tempID = employee.getId();
                     String tname = employee.getName();
                     Integer tage = employee.getAge();
                     String tdept = employee.getDept();
                     PreparedStatement pstmt;
                     Class.forName("com.mysql.jdbc.Driver");
                     String url ="jdbc:mysql://localhost:3306/general";
                     java.sql.Connection con = DriverManager.getConnection(url,"root", "1234");
                     System.out.println("URL: " + url);
                     System.out.println("Connection: " + con);
                     pstmt = (PreparedStatement) con.prepareStatement("REPLACE INTO PERSON SET ID=?, NAME=?, AGE=?, DEPT=?");
                     pstmt.setInt(1, tempID);
                     pstmt.setString(2, tname);
                     pstmt.setInt(3, tage);
                     pstmt.setString(4, tdept);
                     pstmt.executeUpdate();
                   }
                  

                  我的問題在這里:

                  pstmt.setInt(1, tempID);
                  
                  pstmt.setInt(3, tage);
                  

                  我不能在這里使用整數變量.我試過 intgerObject.intValue();但它使事情變得更加復雜.我們還有其他轉換方法或轉換技術嗎?

                  I cant use the Integer variables here. I tried with intgerObject.intValue(); But it makes things more complex. Do we have any other conversion methods or conversion techniques?

                  任何修復都會更好.

                  推薦答案

                  正如已經在別處寫的:

                  • 對于 Java 1.5 及更高版本,您(幾乎)不需要做任何事情,它由編譯器完成.
                  • 對于 Java 1.4 及之前版本,使用 Integer.intValue() 將 Integer 轉換為 int.
                  • For Java 1.5 and later you don't need to do (almost) anything, it's done by the compiler.
                  • For Java 1.4 and before, use Integer.intValue() to convert from Integer to int.

                  但是正如您所寫,Integer 可以為空,因此在嘗試轉換為 int 之前檢查一下是明智的(否則可能會遇到 NullPointerException).

                  BUT as you wrote, an Integer can be null, so it's wise to check that before trying to convert to int (or risk getting a NullPointerException).

                  pstmt.setInt(1, (tempID != null ? tempID : 0));  // Java 1.5 or later
                  

                  pstmt.setInt(1, (tempID != null ? tempID.intValue() : 0));  // any version, no autoboxing  
                  

                  * 使用默認值零,也可以什么都不做,顯示警告或...

                  我大多不喜歡使用自動裝箱(第二個示例行),所以很清楚我想要做什么.

                  I mostly prefer not using autoboxing (second sample line) so it's clear what I want to do.

                  這篇關于如何將整數轉換為整數?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數溢出?)
                  Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關系嗎?)
                  How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內創建一個隨機打亂數字的 int 數組)
                  Inconsistent behavior on java#39;s ==(java的行為不一致==)
                  Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠將 0xff000000 存儲為 int?)
                  Unexpected result in long/int division(意外結果導致長/整數除法)

                      <bdo id='mfBoV'></bdo><ul id='mfBoV'></ul>
                      • <i id='mfBoV'><tr id='mfBoV'><dt id='mfBoV'><q id='mfBoV'><span id='mfBoV'><b id='mfBoV'><form id='mfBoV'><ins id='mfBoV'></ins><ul id='mfBoV'></ul><sub id='mfBoV'></sub></form><legend id='mfBoV'></legend><bdo id='mfBoV'><pre id='mfBoV'><center id='mfBoV'></center></pre></bdo></b><th id='mfBoV'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mfBoV'><tfoot id='mfBoV'></tfoot><dl id='mfBoV'><fieldset id='mfBoV'></fieldset></dl></div>

                        <small id='mfBoV'></small><noframes id='mfBoV'>

                        <tfoot id='mfBoV'></tfoot>

                            <tbody id='mfBoV'></tbody>

                          1. <legend id='mfBoV'><style id='mfBoV'><dir id='mfBoV'><q id='mfBoV'></q></dir></style></legend>
                            主站蜘蛛池模板: av资源中文在线天堂 | 久久久久九九九九 | 国产精品美女www | 日本午夜免费福利视频 | 日韩精品| 日本免费一区二区三区视频 | 免费毛片在线 | 亚洲精品久久视频 | 亚洲精品自在在线观看 | 一区二区三区观看视频 | 日韩在线视频一区 | 国产精品亚洲一区二区三区在线 | 国内精品成人 | 国产亚洲欧美另类一区二区三区 | 日韩午夜一区二区三区 | 一区二区三区四区在线视频 | 一级网站 | 日韩三区在线 | 日本色高清 | 黄视频网址| 国产精品久久久爽爽爽麻豆色哟哟 | 日韩欧美三区 | 亚洲欧美精品久久 | 午夜精品一区二区三区在线播放 | 蜜桃视频在线观看www社区 | 日韩毛片在线观看 | 黄色免费网址大全 | 7777精品伊人久久精品影视 | 祝你幸福电影在线观看 | 亚洲伦理自拍 | 久久性色 | 中文字幕精品一区二区三区精品 | 91精品国产一区二区三区 | 中文字幕免费在线观看 | 精品国产一区二区三区久久 | 精品婷婷| 欧美日韩国产一区二区 | 天天射影院 | 亚洲欧美视频 | 九九免费在线视频 | 亚洲精品一区二区在线观看 |