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
我試着找出我做錯了。我想要的代碼上線問一個問題,if語句來檢查字符串或數字,是不是在1-12之間。 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication
我的CirculaList類中的原始toString方法工作正常。但是,當我在我的堆棧類中的toString方法中調用它時,它返回我認爲是我的堆棧的內存位置。我試過超載,但沒有區別。 我的代碼: CircularList類 public class CircularList{
private Node tail = null;
public void addToFront(int elem){