博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
由错误的方法中得到的
阅读量:5362 次
发布时间:2019-06-15

本文共 1051 字,大约阅读时间需要 3 分钟。

- -!今天做了件糊涂事,居然忘记用sp来直接cross表格来取值。不过由此也得到一个方法:

None.gif
        
private
 
struct
 SLocation
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
InBlock.gif            
public string  name; 
InBlock.gif            
public int ID; 
ExpandedBlockEnd.gif        }
 
None.gif        
None.gif        
private
 ArrayList GetLocationArrayList()
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._dsLocation.Tables.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._dsLocation = this._loc.GetLocationList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            DataTable _dt   
= this._dsLocation.Tables[0];
InBlock.gif            ArrayList _al   
= new ArrayList();
InBlock.gif            SLocation _stcloc 
= new SLocation();
InBlock.gif            
foreach (DataRow _dr in _dt.Rows)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _stcloc.ID   
= Convert.ToInt32(_dr["LOCATION_ID"]);
InBlock.gif                _stcloc.name 
= _dr["LOCATION_NAME"].ToString();
InBlock.gif                _al.Add(_stcloc);
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _al;
ExpandedBlockEnd.gif        }
None.gif
None.gif        
private
 String GetLocationNameByID(
int
 ID)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._alLocation.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._alLocation  = this.GetLocationArrayList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            IEnumerator _emun   
= _alLocation.GetEnumerator();
InBlock.gif            SLocation _stcloc   
= new SLocation();
InBlock.gif            String _locName     
= string.Empty;
InBlock.gif            
for (int i=0;i<_alLocation.Count-1;i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _emun.MoveNext();
InBlock.gif                _stcloc 
= (SLocation)_emun.Current;
InBlock.gif                
if (_stcloc.ID  == ID)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    _locName    
= _stcloc.name;
InBlock.gif                    
break;
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _locName;
ExpandedBlockEnd.gif        }

 

先声明一个结构,再将结构做为object放入arraylist.

over

转载于:https://www.cnblogs.com/syveen/archive/2005/07/09/189271.html

你可能感兴趣的文章
设计模式学习的好方法
查看>>
感谢Leslie Ma
查看>>
几种排序方法
查看>>
查看数据库各表的信息
查看>>
第一阶段测试题
查看>>
第二轮冲刺第五天
查看>>
图片压缩
查看>>
Hadoop-2.6.5安装
查看>>
javaScript 实时获取系统时间
查看>>
ES6思维导图
查看>>
第四周作业
查看>>
20151121
查看>>
线段重叠 (思维好题)
查看>>
Codeforces Round #413 C. Fountains (线段树的创建、查询、更新)
查看>>
SBuild 0.1.5 发布,基于 Scala 的构建系统
查看>>
WordPress 3.5 RC3 发布
查看>>
DOM扩展札记
查看>>
primitive assembly
查看>>
根据经纬度查询位置百度api
查看>>
浅谈localStorage的用法
查看>>