C#, C♯, C#相談室 Part60at TECH
C#, C♯, C#相談室 Part60 - 暇つぶし2ch31:デフォルトの名無しさん
10/06/28 11:39:27
using System;
namespace ConsoleApplication1
{
class Program {
static void Main(string[] args) {
B b = new B(10);
A[] a = b.MakeSomeA("TEST");
foreach(A it in a)
Console.WriteLine(it.str);
}
}
class A {
public string str;
public A(string s) {
str = s;
}
}
class B {
public A[] ins_a;
public int num;
public B(int x) {
num = x;
ins_a = new A[num];
}
public A[] MakeSomeA(string s) {
for (int i = 0; i < num; i++)
ins_a[i] = new A(s);
return ins_a;
}
}
}



次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch