| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1225 人关注过本帖
标题:[求助]C#中结构的定义,俺老是搞不明白!
只看楼主 加入收藏
头号地主
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2004-11-17
收藏
 问题点数:0 回复次数:6 
[求助]C#中结构的定义,俺老是搞不明白!
using System;

namespace ConsoleApplication2
{
  class Class1
    {
      static void Main(string[] args)
    {
            struct customerName
         {public string firstName,lastName;}
     customerName myName;
     myName.firstName="Jhon";
     myName.lastName="smith";
     Console.WriteLine("{0}{1}",myName.firstName,myName.lastName);
    }
    }
}
这段代码错在哪啊?为什么我把customerName的定义放在Main()函数外面就能通过编译。放在Main()函数内部却不行?请指教!
搜索更多相关主题的帖子: 定义 结构 
2005-04-03 20:58
幻风幻云
Rank: 1
等 级:新手上路
帖 子:762
专家分:0
注 册:2005-1-14
收藏
得分:0 
Main 方法是程序的入口点,程序控制在该方法中开始和结束。该方法在类或结构的内部声明。它必须为静态的。它可以具有 voidint 返回类型。在 Main 方法中创建对象和调用其他方法。声明 Main 方法时既可以不使用参数,也可以使用参数。后一种形式使程序可以读取命令行参数。

2005-04-03 22:25
yushengou
Rank: 1
等 级:新手上路
帖 子:401
专家分:0
注 册:2005-3-30
收藏
得分:0 
感觉结构和类有点像吧。
偶初学者,相信度很低的

我是初学者,希望大家能多多帮助我 /bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs./bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif');}" onmousewheel="return imgzoom(this);" alt="" />
2005-04-04 10:15
头号地主
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2004-11-17
收藏
得分:0 
那我这段代码错在哪啊?
2005-04-04 18:44
幻风幻云
Rank: 1
等 级:新手上路
帖 子:762
专家分:0
注 册:2005-1-14
收藏
得分:0 
结构应该放在Main函数的外面申明!

2005-04-04 19:29
yushengou
Rank: 1
等 级:新手上路
帖 子:401
专家分:0
注 册:2005-3-30
收藏
得分:0 
幻幻。我说结构和类有点像是不是对的啊

我是初学者,希望大家能多多帮助我 /bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs./bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif');}" onmousewheel="return imgzoom(this);" alt="" />
2005-04-05 08:59
幻风幻云
Rank: 1
等 级:新手上路
帖 子:762
专家分:0
注 册:2005-1-14
收藏
得分:0 

是啊

c#中结构与类的区别 www.chinacs.net 2004-5-27 中文C#技术站

<SCRIPT type=text/javascript>

	
  

 
   



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

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