我有一個方法: public User(String name) {
//create a user with the appropriate name}
我想創造的東西在那裏,如果有人類型的 User (bob);
的一個實例將出現名稱爲「bob」的用戶類。 我試圖用這個代碼: public User(String name) {
User name = new User(
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0); cin.tie(0);
auto arr = new int[5];
// int arr[5] = {1, 2, 3, 4, 5};
for (auto i: arr){
c
我想用new運算符來分配一個2d數組。這是我的函數new2d。 int** new2d(int r, int c)
{
int **t = new int*[r];
for(int i = 0; i < r; i++)
t[i] = new int[c];
return t;
}
我很確定這是正確的做法。然而,當我嘗試打印像下面 int **a =