小编Aam*_*mir的帖子

通过非unicode代码读取UTF-8 Unicode文件

我必须读取一个带有UTF-8编码的Unicode文本文件,并且必须将此数据写入另一个文本文件.该文件以行标签分隔数据.

我的阅读代码是没有unicode支持的C++代码.我正在做的是逐行读取文件string/char*并将该字符串按原样放入目标文件.我无法更改代码,因此不欢迎代码更改建议.

我想知道的是,逐行读取时,我会遇到一行中的NULL终止字符('\ 0'),因为它是unicode,一个字符可以跨越多个字节.

我的想法是很可能在一行中遇到一个NULL终止字符.你的意见?

c++ unicode utf-8 text-files

4
推荐指数
1
解决办法
903
查看次数

推荐跨平台C++ UI和网络库

需要考虑的事项: - 易于使用 - 快速 - 尽可能使用底层操作系统(如用于UI的wxWidgets)

我倾向于使用wxWidgets for UI和Boost进行网络化 - 他们如何与其他人比较?

c++ boost wxwidgets cross-platform

4
推荐指数
1
解决办法
1960
查看次数

如何在C++中调用字符串资源

在resource.h中

#define String1 333
Run Code Online (Sandbox Code Playgroud)

在resource.rc中

#include <windows.h>
#include "resource.h"

STRINGTABLE
{
    STRING1                   "hie people"
}
Run Code Online (Sandbox Code Playgroud)

在main.cpp中

#include<iostream.h>
#include<resource.h>
#include<windows.h>
using namespace std;
int main{
cout<<here i want to output string value from resource how to call the string;
}
Run Code Online (Sandbox Code Playgroud)

还有一个我在代码块中编译的问题.就是说resource.h不存在我错的地方

string resources visual-c++

4
推荐指数
1
解决办法
7138
查看次数

以多态方式捕获异常

这是main():

int main()
{
    B b(1,"two","three");
    try
    {
        f1(b);
    }
    catch(B& b_ref)
    {
        cout<<"Caught B&"<<endl;
        b_ref.print();
    }
    catch(A& a_ref)
    {
        cout<<"Caught A&"<<endl;
        a_ref.print();
    }

    system("pause");
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

这是f1():

void f1(A& subject)
{
    throw subject;
}    
Run Code Online (Sandbox Code Playgroud)

信息:

B继承自A A::print()是虚拟的,并且在B中重新实现.捕获异常的捕获是catch(A& a_ref)我认为有意义的,因为异常'静态类型(主题)是A&.但是,为什么不B:: print()跑?动态类型"丢失"了吗?只在线上A::print()运行a_ref.print();.

有人可以解释一下吗?

c++ virtual inheritance reference exception

3
推荐指数
3
解决办法
649
查看次数

旗帜枚举混乱C#

根据我的代码a = 1,b = 2,c = 3等我认为该标志会使a = 1,b = 2,c = 4等

[Flags]
public enum someEnum { none, a, b, c, d, e, f, }
Run Code Online (Sandbox Code Playgroud)

我如何得到我的意图(c = 4,e = 8)?[Flags]上面的意思是什么?

c# enums attributes enum-flags

3
推荐指数
1
解决办法
1188
查看次数

如何在运行时在WinForm中添加按钮?

我有以下代码:

public GUIWevbDav()
{
    InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
    try
    {
        //My XML Loading and other Code Here

        //Trying to add Buttons here
        if (DisplayNameNodes.Count > 0)
        {
            for (int i = 0; i < DisplayNameNodes.Count; i++)
            {
                Button folderButton = new Button();
                folderButton.Width = 150;
                folderButton.Height = 70;
                folderButton.ForeColor = Color.Black;
                folderButton.Text = DisplayNameNodes[i].InnerText;

                Now trying to do  GUIWevbDav.Controls.Add
                (unable to get GUIWevbDav.Controls method )

            }
        }
Run Code Online (Sandbox Code Playgroud)

我不想在运行时创建一个表单,但是将动态创建的按钮添加到Current Winform即:GUIWevDav

谢谢

c# winforms

3
推荐指数
2
解决办法
1万
查看次数

如何使用LINQ拆分字符串并获取指定的标记

我有一个制表符分隔的字符串,格式如下:

string line = "D\t892270\t88418\t6\t2452927\t-99999\t-99999\t12";
Run Code Online (Sandbox Code Playgroud)

我想要的是获取通过指定的令牌的值indexToGet.

我写了以下LINQ查询来做这个,我相信可以改进很多,但目前我无法这样做.有人可以为我改进这个LINQ查询吗?

int indexToGet = 7;
var val =
    (from str in line.Split('\t')
    select str).ToArray().GetValue(indexToGet).ToString();
Run Code Online (Sandbox Code Playgroud)

c# linq-to-objects

3
推荐指数
1
解决办法
4783
查看次数

如何在C#代码中更改输入语言?

我正在使用C#(VS2010)编写一个wpf应用程序,当我的应用程序运行时,输入语言取自系统输入语言,即英语.

我希望我的应用程序自动更改输入语言而不必按(Shift + Alt)

你能告诉我怎么做吗?

另一个问题,我可以使用我的应用程序更改系统中的时区吗?

c# wpf

3
推荐指数
1
解决办法
1万
查看次数

动态解析通过Reflection加载的程序集中的类型

请考虑DLL中的以下代码:

public class ReceivingClass
{
    private Assembly myAssembly;
    private Type typeOfClass;
    public ReceivingClass()
    {
        myAssembly = Assembly.LoadFile(@"E:\VSProjects\TestDynamicLinking\MyLib\bin\Debug\MyLib.dll");
        //Can I use this type somehow to resolve the type in the below method?
        typeOfClass = myAssembly.GetType("ExportedClass");
    }
    public bool ReceiveMethod(ExportedClass classobj)
    {
        return true;
    }
}
Run Code Online (Sandbox Code Playgroud)

所以,问题是在ReceiveMethod上面,ExportedClass是一个在Assembly中定义的类,我在构造函数中动态加载.那么,我可以以某种方式解决ExportedClass我不必使用的类型dynamic吗?

c# reflection c#-4.0

3
推荐指数
1
解决办法
902
查看次数

改进LINQ查询返回满足一定条件的项的索引

我有这个LINQ查询,它返回数组中所有项的索引,其时间值(即a double)满足特定条件,如下面的查询.

var sonicIndices = completeLog.Select((item, index) => new { Item = item, Index = index })
            .Where(x => Math.Abs(x.Item.time - nullValue) > 0.001)
            .Select(item => item.Index).ToArray();
Run Code Online (Sandbox Code Playgroud)

我很确定这可以改进,但如何?我很难过.任何人都可以帮助我吗?

c# linq c#-4.0

3
推荐指数
1
解决办法
261
查看次数