WINGS(Www INtegrated Guide on Server-architecture)
Www INtegrated Guide on Server-architecture :
   ホーム お問い合わせ サーバーサイド環境構築設定 つぶやき ブックマーク レンタルサーバー 総合FAQ/訂正&ダウンロード このエントリーをはてなブックマークに追加        
  • 刊行書籍情報  [書籍マップ
  • オンライン公開 技術記事
  • シリーズ別書籍リスト
  • 「WINGS News」登録/解除
  • WINGSプロジェクト紹介
  • WINGSプロジェクトメンバ募集





 本書訂正[基礎からしっかり学ぶC#の教科書 改訂新版 C# 8対応]


該当頁該当箇所 修正刷
訂正箇所 訂正事項 更新日
17 図1-18
中間言語(LI) 中間言語(CIL 2020年5月15日
42 [サンプル]Sample2.cs 第2刷
string name = System.Console.ReadLine(); string name = Console.ReadLine(); 2020年2月10日
175 [サンプル]abstract.cs 下から3行目 第2刷
s.getInfo(); s.GetInfo(); 2020年2月23日
178 [サンプル]interface.cs 上から3行目 第2刷
void getInfo(); void GetInfo(); 2020年2月23日
238 [サンプル]nullconditional1.cs 第2刷
Console.WriteLine(no); Console.WriteLine(n); 2020年4月28日
241 [サンプル]Practice10_4.cs 第2刷
public Olympic(int y, int m, int d) public Competition(int y, int m, int d) 2020年4月30日
241 [サンプル]Practice10_4.cs 第2刷
Console.WriteLine( os.GetOpening() ); // 出力値:(2020, 7, 24) この1行は削除 2020年4月30日
245 冒頭のサンプルコード 2行目 第2刷
SampleDel delVar = new SampleDel( testMethod ); SampleDel delVar = new SampleDel( TestMethod ); 2020年3月05日
370 第3章の解答「3」「4」 第2刷
第3章の解答「3」「4」 解答「4」解答「5」 2020年4月10日
370 第3章の解答 第2刷
解答「3」 円マークのエスケープシーケンスは¥¥ で、改行は¥n となります。
[サンプル]Practice3_2.cs
using System;
namespace Practice3_2
{
  class Practice
  {
    static void Main()
    {
      // 逐語的文字列リテラル
      string s1 = @"¥1,000
¥20,000";
      Console.WriteLine( s1 );
      string s2 = "¥¥1,000¥n¥¥20,000";
      Console.WriteLine( s2 );
    }
  }
}
2020年4月10日
371 第4章の解答「1」 第2刷
②評価 ③文(ステートメント) ②文(ステートメント)③評価 2020年4月10日
372 第4章の解答「4」 第2刷
第4章の解答「4」 第5章の解答「4」 2020年4月10日
373 第5章の解答「3」のサンプルファイル名 第2刷
[サンプル]Practice5_1.cs [サンプル]Practice5_2.cs 2020年4月10日
373 第6章の解答「2」 第2刷
「2」 不要 2020年4月13日
373 第6章の解答番号「3」 第2刷
「3」 「2」 2020年4月13日
373 第6章の解答番号「4」「5」 第2刷
「4」「5」 「3」「4」 2020年4月13日
374 【第1刷】第6章の解答「5」2行目 【第2刷】第6章の解答「4」2行目
静的なものを 非静的なものを 2020年4月13日
378 第8章の解答「4」のサンプルファイル名 第2刷
[サンプル]Practice8_4.cs [サンプル]Practice8_3.cs 2020年4月10日
379 第10章の解答「1」 第2刷
解答⑥⑦がない ⑥非許容参照型 ⑦null 2020年4月13日
381 解答 5 [サンプル]Practice10_4.cs 第2刷
  readonly int Day;
}
  readonly int Day;
  ...中略...
}
2020年4月30日
381 解答 6 [サンプル]Practice10_4.cs 第2刷
public (string, int, int, int) GetOpening()
{
  return (City, Year, Month, Day);
}
class Competition
{
  ...中略...
  public (string, int, int, int) GetOpening()
  {
    return (City, Year, Month, Day);
  }
}
static void Main()
{
  var os = new Competition(2020, 7, 24) { City = ""東京"" };
  Console.WriteLine( os.GetOpening() ); // 出力値:(東京, 2020, 7, 24)
}
2020年4月30日
383 第12章の解答「3」のサンプルファイル名 第2刷
[サンプル]Practice12_3.cs [サンプル]Practice12_2.cs 2020年4月10日

[ 書籍ホーム]   [ FAQ]   [ 本書訂正]

著作権情報個人情報保護について広告掲載についてRSSフィードについて
出版社の方々へ会社概要スタッフ紹介サイトマップ  
書籍/記事に関するご質問/お問い合わせは「WINGSお問い合わせフォーム」をご利用ください。
Copyright(c) 1998-2024,Yamada Yoshihiro.  All Right Reserved.