Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
查看: 3091|回复: 24
打印 上一主题 下一主题

vb.net 什么是dim

[复制链接]

13

主题

0

好友

2113

积分

白金长老

Rank: 10

跳转到指定楼层
1#
发表于 2008-7-19 06:42 PM |只看该作者 |倒序浏览
Data TypeSize in BytesDescriptionType
Byte18-bit unsigned integerSystem.Byte
Char216-bit Unicode charactersSystem.Char
Integer432-bit signed integerSystem.Int32
Double864-bit floating point variableSystem.Double
Long864-bit signed integerSystem.Int64
Short216-bit signed integerSystem.Int16
Single432-bit floating point variableSystem.Single
StringVariesNon-Numeric TypeSystem.String
Date8System.Date
Boolean2Non-Numeric TypeSystem.Boolean
Object4Non-Numeric TypeSystem.Object
Decimal16128-bit floating point variableSystem.Decimal


dim 是用来定义 一个 object 或类型
  1. Imports System.Console
  2. Module Module1Sub Main()
  3. Dim a,b,c as Integer
  4. 'declaring three variables of type integer
  5. a=10
  6. b=20
  7. c=a+b
  8. Write("Sum of a and b is" & c)
  9. End Sub

  10. End Module
复制代码

[ 本帖最后由 goodday 于 2008-7-19 06:46 PM 编辑 ]




dim
收藏收藏0

13

主题

0

好友

2113

积分

白金长老

Rank: 10

2#
发表于 2008-7-19 06:50 PM |只看该作者
你要用电脑的资源麻
你要和电脑 申请咯

然后电脑会 发那个空间给你
但你要 讲好你要什么的 空间
如  string , integer , long

如果你要很大的 就申请大的

否则不够 装


回复

使用道具 举报

3

主题

0

好友

7984

积分

百变名嘴

Rank: 13Rank: 13Rank: 13Rank: 13

3#
发表于 2008-7-19 07:23 PM |只看该作者
請問long是什么呢


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

4#
发表于 2008-7-19 08:13 PM |只看该作者
Visual Basic typeCommon language runtime type structureNominal storage allocationValue range
Boolean
Boolean
Depends on implementing platform
True or False
Byte
Byte
1 byte
0 through 255 (unsigned)
Char (single character)
Char
2 bytes
0 through 65535 (unsigned)
Date
DateTime
8 bytes
0:00:00 (midnight) on January 1, 0001 through 11:59:59 PM on December 31, 9999
Decimal
Decimal
16 bytes
0 through +/-79,228,162,514,264,337,593,543,950,335 (+/-7.9...E+28) † with no decimal point; 0 through +/-7.9228162514264337593543950335 with 28 places to the right of the decimal;
smallest nonzero number is +/-0.0000000000000000000000000001 (+/-1E-28) †
Double (double-precision floating-point)
Double
8 bytes
-1.79769313486231570E+308 through -4.94065645841246544E-324 † for negative values;
4.94065645841246544E-324 through 1.79769313486231570E+308 † for positive values
Integer
Int32
4 bytes
-2,147,483,648 through 2,147,483,647 (signed)
Long (long integer)
Int64
8 bytes
-9,223,372,036,854,775,808 through 9,223,372,036,854,775,807 (9.2...E+18 †) (signed)
Object
Object (class)
4 bytes on 32-bit platform
8 bytes on 64-bit platform
Any type can be stored in a variable of type Object
SByte
SByte
1 byte
-128 through 127 (signed)
Short (short integer)
Int16
2 bytes
-32,768 through 32,767 (signed)
Single (single-precision floating-point)
Single
4 bytes
-3.4028235E+38 through -1.401298E-45 † for negative values;
1.401298E-45 through 3.4028235E+38 † for positive values
String (variable-length)
String (class)
Depends on implementing platform
0 to approximately 2 billion Unicode characters
UInteger
UInt32
4 bytes
0 through 4,294,967,295 (unsigned)
ULong
UInt64
8 bytes
0 through 18,446,744,073,709,551,615 (1.8...E+19 †) (unsigned)
User-Defined (structure)
(inherits from ValueType)
Depends on implementing platform
Each member of the structure has a range determined by its data type and independent of the ranges of the other members
UShort
UInt16
2 bytes
0 through 65,535 (unsigned)

msdn 的 目录


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

5#
发表于 2008-7-19 08:20 PM |只看该作者
当我要存

65535 + 1 = 65536 的糖果时

我和电脑 借了 char  的盒子
多了一个 糖果 怎么办??

会error 咯
那你就要 string 咯

如果你要哦 用

2,147,483,647  +  1000 = 2,147,484,647
integer 肯定  装不下的

那你要用 long  的 9,223,372,036,854,775,807


回复

使用道具 举报

3

主题

0

好友

7984

积分

百变名嘴

Rank: 13Rank: 13Rank: 13Rank: 13

6#
发表于 2008-7-19 08:33 PM |只看该作者
怎么數字變化那么多
運用hex來算嗎?


回复

使用道具 举报

62

主题

5

好友

3715

积分

本站名嘴

Rank: 11Rank: 11

7#
发表于 2008-7-19 08:41 PM |只看该作者
简单来说,数学的代数

1+x=2
Dim x as string

1+x=2
x=textbox1.text
=)


回复

使用道具 举报

3

主题

0

好友

7984

积分

百变名嘴

Rank: 13Rank: 13Rank: 13Rank: 13

8#
发表于 2008-7-19 08:48 PM |只看该作者
數目怎么可以用String呢


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

9#
发表于 2008-7-19 09:32 PM |只看该作者
可以 只是 是当文字来处理
不能 sort 的


回复

使用道具 举报

3

主题

0

好友

7984

积分

百变名嘴

Rank: 13Rank: 13Rank: 13Rank: 13

10#
发表于 2008-7-19 09:38 PM |只看该作者
不、一個數學運算不可以用stringDe


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2024-11-20 04:56 AM , Processed in 0.104327 second(s), 25 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部