新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
struct T_ChildStruct
成都创新互联专注于泉州企业网站建设,响应式网站开发,商城开发。泉州网站建设公司,为泉州等地区提供建站服务。全流程按需求定制设计,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务
{
int nChildData;
string strChildData;
T_ChildStruct()
{
nChildData = 0;
strChildData = ""; // string可以不用写初始化,本身构造中就有
}
};
struct T_FatherStruct
{
int nFatherData;
string strFatherData;
T_ChildStruct arrChild[10];
T_FatherStruct()
{
nFatherData = 0;
strFatherData = "";
}
};
你没有将数组定义为一个新的实例:
dim
j
as
Integer
dim
a(100)
as
new
Phvalue
for
j=0
to
501
...................
一. 前提定要声明数组,需要赋值或者标明维数例dim a() as integer 二. 使用redim重新定义数组数组数据全部初始化要保留原数据加preserve 三 redim能修改数据维数能改变数组类型 四 redim 能够全局声
VB.NET ,结构体要写在所有函数的外部
Public Class Form1
Structure Hate
Dim str As String
Dim i As Integer
End Structure
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim a As Hate
a.str = "string"
a.i = 1
MsgBox(a.str a.i)
End Sub
End Class
1、先定义一个结构体
2、初始化并定义一个结构体的变量
3、使用该变量即可
一个简单的例子:
Dim a(3) As Integer = { 0, 1, 2 }**修改**既然有界数组不能初始化,就还缺(省)界数组试试嘛:
Dim a() As Integer = { 0, 1, 2 }
类型不匹配的错误估计是你的结构体缺少构造函数造成的。在你的quality_i结构体定义里面加一个构造函数,如下所示
Public Structure quality_i
Public nub As Integer
Public nae As String
Public Sub New(ub As Integer, ae As String)nub = ubnae = aeEnd SubEnd Structure然后以如下方式初始化: