标题:一个关于静态字段的修改问题?
只看楼主
hehewei
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2009-12-24
结帖率:90%
已结贴  问题点数:15 回复次数:2 
一个关于静态字段的修改问题?
源程序:
using System;
namespace P4_4
{
    class Program
    {
        static void Main()
        {   
            Student s1 = new Student("王小红");
            Student s2 = new Student("周军");
            s1 = new Student("Jerry");
            
        }
    }
   public class Student
    {
        public static int objects = 0, classes = 0;
        public static string name;
        
        public Student(string n)
        {   
            name = n;           
            Console.WriteLine("对象计数:{0}", ++objects);
                        
        }
       static Student()
        {
            Console.WriteLine("类计数:{0}", ++classes);
        }
        
    }
}

在以上程序中,Student的静态字段object_count将记录被创建的学生对象的总数。试修改该程序,使该字段记录的是当前内存中学生对象的总数。
我修改的程序:
using System;

namespace P4_4
{
    class Program
    {
        static void Main()
        {   
            Student s1 = new Student("王小红");
            Student s2 = new Student("周军");
            s1 = new Student("Jerry");
            
        }
    }
   public class Student
    {
        public static int objects = 0, classes = 0,count = 0;
        public static string name;
        
        public Student(string n)
        {   
            name = n;           
            Console.WriteLine("对象计数:{0}", ++objects);
            count++;
            
        }
        ~Student()
        {
            Console.WriteLine("对象总数:{0}", count);
        }
        
       static Student()
        {
            Console.WriteLine("类计数:{0}", ++classes);
        }
        
    }
}

结果如下:


程序运行后出现了三个对象总数,怎么养才能改成显示一个的???
搜索更多相关主题的帖子: 源程序 
2011-03-20 18:09
zhp223
Rank: 5Rank: 5
等 级:职业侠客
帖 子:99
专家分:362
注 册:2010-3-21
得分:15 
显示总数不要放在析构函数中
class Student
{
    ...
    public static void ShowCount()
    {
        ...
    }
    ...
}

main(..)
{
    ...
    Student.ShowCount();
}

日有所思,夜有所梦
2011-03-21 08:07
hehewei
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2009-12-24
得分:0 
回复 2楼 zhp223
实现了……谢谢了……
2011-03-21 16:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-334242-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.059555 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved