C#转到类

时间:2016-03-21 10:59:57

标签: c# class instance

我的 ExcelHandler 类有问题:

...
class ExcelHandler
    {
        static Excel.Application xlApp;
        static Excel.Workbook xlWorkBook;
        static Excel.Worksheet xlWorkSheet;
        static object misValue = System.Reflection.Missing.Value;

        static string _filename;

        public ExcelHandler(string filename)
        {
            openExcel(_filename);
        }

        internal static bool openExcel(string filename)
        {
            _filename = filename;
        ... other code ...
        internal Array GetRange(string range)
        {
        Array xlValues;
        string[] rangeSplit = range.Split(':');
        Excel.Range xlRange = xlWorkSheet.get_Range(rangeSplit[0], rangeSplit[1]);
        xlValues = (Array)xlRange.Cells.Value;
        return xlValues;
        }
        ... other code ...

如果我在代码中访问Excel文件:

ExcelHandler eh01 = new ExcelHandler(file01); // file for write to
for (blahblah) {  // 1 to 5
  ExcelHandler eh02 = new ExcelHandler(file02);
  Array licLoad = eh02.GetRange("C5:CB5");
  eh02.closeExcel();
  foreach (blahbla) // 26 values
  {
     eh01.insertCell(f.ToString(), row++, 3);
  }
}
eh01.closeExcel();

eh02.GetRange从 file01 而不是 file02 返回数据,我真的输了,为什么?你有什么建议吗?

1 个答案:

答案 0 :(得分:1)

Groo的评论是准确的。创建静态属性会使类的所有实例共享它的值。静态属性属于类型本身,而不属于对象。

来自Microsoft文档:

  

使用static修饰符声明一个静态成员,该成员属于该类型本身而不是特定对象。

参考:https://msdn.microsoft.com/en-us/library/98f28cdx.aspx