vs2008 结构体托管

声明时:

 

1 __gc struct WordElem{
2 String* pattern;
3 String* replacement;
4 WordElem* next;
5 };

 

使用时:(line 7,line20)

 

 

复制代码
代码
1 WordElem* getReplaceWordList(constchar* subs_filename){
2
3 String *subs_file =new String(subs_filename);
4 StreamReader *subs_reader =new StreamReader(subs_file);
5
6 WordElem *head, *tail, *temp;
7 head =new WordElem;
8 head->pattern ="";
9 head->replacement ="";
10 head->next =0;
11
12 tail = head;
13
14 String *pattern, *replacement;
15 while (subs_reader->Peek() >=0) {
16 pattern = subs_reader->ReadLine();
17 replacement = subs_reader->ReadLine();
18 subs_reader->ReadLine();
19
20 temp =new WordElem;
21 temp->pattern = pattern;
22 temp->replacement = replacement;
23 temp->next =0;
24
25 tail->next = temp;
26 tail = temp;
27 }
28
29 subs_reader->Close();
30 return head;
31 }
复制代码

 

之前使用

 

 

1 typedef struct Word{
2 String* pattern;
3 String* replacement;
4 struct Word *next;
5 } WordElem;

 

会报错:

 

 

代码
Error 2 error C3265: cannot declare a managed 'pattern'in an unmanaged 'WordElem' f:\ssd6\ex4\profiling-lab\profiling-lab\substitute.cpp 37 profiling-lab
Error
3 error C3265: cannot declare a managed 'replacement'in an unmanaged 'WordElem' f:\ssd6\ex4\profiling-lab\profiling-lab\substitute.cpp 38 profiling-lab

 

 

 

 

posted @   elar  阅读(437)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
点击右上角即可分享
微信分享提示