tostring

    -4熱度

    3回答

    我很難找到如何編寫我的toString方法來獲取我的程序中每個熊的輸出。我希望輸出顯示「Race - Points - TotalPoints」。但是即使代碼的其他部分似乎編譯了,也無法做到正確。 我是否需要在兩個類中定義toString或缺少什麼?我檢查了幾個其他類似的問題,這似乎是一個替代方案?但是如何最有效地實施? 首先熊類: import java.util.ArrayList; pu

    0熱度

    2回答

    所以我做了一個BST private String toStringHelper(Node node) { if (node == null) { return ""; } if (node.left != null) { System.out.println(node.left.value); toSt

    0熱度

    3回答

    是否可以創建一個對象以便返回人類可讀字符串? function hsl_obj(h, s, l) { this.h = h; this.s = s; this.l = l; this.__str__ = function() { return "hsl(" + this.h + ", " + this.s + "%, " + this.l + "

    -3熱度

    2回答

    該錯誤是由toString()函數產生的。 "error" "TypeError: Cannot read property 'toString' of undefined Image of error 下面是代碼: while( items[i][j].toString().charCodeAt() < items[i][j-1].toString().charCodeAt() )

    1熱度

    2回答

    我有熊貓數據幀與價值觀變量如下 print (df.xx) 1 5679558 2 (714) 254 3 0 4 00000000 5 000000000 6 00000000000 7 000000001 8 000000002 9 000000003 10 000000004 11 000000005 print (df.dtypes

    0熱度

    2回答

    我有jdk.nashorn.api.scripting的ScriptObjectMirror對象。 我得到使用JSON節點: Object clientDataNode = scriptObjectMirror.getMember("clientData"); 如何clientDataNode轉換成字符串,以獲得某事像這樣: "clientData": { "name": "John

    0熱度

    7回答

    public class Date { private int m; // month private int d; // day private int y; // year private String month; // string month name ex. "January" private int day; // int day

    0熱度

    1回答

    我試着找出我做錯了。我想要的代碼上線問一個問題,if語句來檢查字符串或數字,是不是在1-12之間。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication

    2熱度

    3回答

    我對編程頗爲陌生,而且我的代碼有點卡住了。 我正在編程一個機器人,並且在每個位置開關之後,我想將他的當前位置寫入ToString方法,以便我可以在之後檢查它。我不確定ToString方法是否正確。也許我需要一個列表或數組? 我不是要求解決方案,但有些幫助來幫助我解決這個問題。 感謝您的幫助! 見下面我的代碼: enum Richting { Boven, Onder,

    0熱度

    1回答

    我的CirculaList類中的原始toString方法工作正常。但是,當我在我的堆棧類中的toString方法中調用它時,它返回我認爲是我的堆棧的內存位置。我試過超載,但沒有區別。 我的代碼: CircularList類 public class CircularList{ private Node tail = null; public void addToFront(int elem){