プログラミング始めたいんだけど、何の言語がいい?at TECH
プログラミング始めたいんだけど、何の言語がいい? - 暇つぶし2ch485:デフォルトの名無しさん
23/01/28 10:35:43.32 bIIsQjny.net
ちなみにC#はダメ
URLリンク(ideone.com)
using System;
class Foo {
public static int bar = 99;
public int baz() {return bar;}
}
public class Test {
public static void Main() {
Foo foo = new Foo();
Console.WriteLine(Foo.bar);
//Console.WriteLine(foo.bar); // error CS0176: Static member `Foo.bar' cannot be accessed with an instance reference, qualify it with a type name instead
Console.WriteLine(foo.baz());
}
}


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