0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

型の別名定義(using エイリアス ディレクティブ)を入れ子にする (c#)

Last updated at Posted at 2019-09-15

前提

  • c# 5~

試したこと

  • using エイリアス ディレクティブを使用して、型の別名を定義し、その別名を使用して新たに別名を定義してみました。

エラー

using SpreadSheet = Matrix<string>;
using SpreadSheetBook = Dictionary<string, SpreadSheet>;
namespace SpreadSheetManager {
namespace SpreadSheetManager {
	using SpreadSheet = Matrix<string>;
	using SpreadSheetBook = Dictionary<string, SpreadSheet>;

可能

using SpreadSheet = Matrix<string>;
namespace SpreadSheetManager {
	using SpreadSheetBook = Dictionary<string, SpreadSheet>;
namespace SpreadSheetManager {
	using SpreadSheet = Matrix<string>;
	namespace xxx {
		using SpreadSheetBook = Dictionary<string, SpreadSheet>;

正解

namespace SpreadSheetManager {
	using SpreadSheet = Matrix<string>;
	using SpreadSheetBook = Dictionary<string, Matrix<string>>;
using SpreadSheet = Matrix<string>;
using SpreadSheetBook = Dictionary<string, Matrix<string>>;
namespace SpreadSheetManager {

別解

namespace SpreadSheetManager {
	public class SpreadSheet : Matrix<string> { }
	public class SpreadSheetBook : Dictionary<string, Matrix<string>> { }
  • 少し付け加えたくなることってありますよね。

解ったこと

  • 同じnamespace階層では、定義した別名は、他の別名の定義で使用できません。
  • 親のnamespace階層で定義した別名は、子階層の別名定義で使用可能です。
  • using エイリアス ディレクティブを、入れ子にする必要はありません。
  • 別名を付けるような場合は、手を入れたくなることも多いので、結局、継承クラスを作ることになりがちです。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?