问题列表 - 第49331页

ASP.NET MVC必须匹配验证属性

我似乎无法找到要使用的注释,以确保2个或更多文本框是相同的.

例如:

public class NewPasswordModel
{
    public string NewPassword { get; set; }

    [MustMatch(Name="NewPassword")] // What is the correct thing to come here.
    public string NewPasswordRep { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

asp.net-mvc asp.net-mvc-3

10
推荐指数
1
解决办法
4446
查看次数

Android首选项onclick事件

在我的preferences.xml中,我有一个像这样的首选元素:

<Preference android:title="About" />
Run Code Online (Sandbox Code Playgroud)

我想分配onClick事件,所以如果用户点击它,我就可以打开新的Intent或浏览器.我试着像按钮那样做,但这似乎不起作用.

java android android-preferences

106
推荐指数
4
解决办法
5万
查看次数

Haskell遍历树顺序预订后序

我有以下Haskell数据定义:

data Tree = Leaf Int | Node Int Tree Tree deriving Show
Run Code Online (Sandbox Code Playgroud)

我编写了以下程序来遍历树木预订,订单和后序:

preorder(Leaf n) = n
preorder(Node n t0 t1) = [n] ++ preorder t0 ++ preorder t1

inorder(Leaf n) = n
inorder(Node n t0 t1) = inorder t0 ++ [n] ++ inorder t1

postorder(Leaf n) = n
postorder(Node n t0 t1) = postorder t0 ++ postorder t1 ++ [n]
Run Code Online (Sandbox Code Playgroud)

我得到的错误是:

- Type error in application  
*** Expression     : preorder t0 ++ preorder t1  
*** Term           : preorder …
Run Code Online (Sandbox Code Playgroud)

tree haskell

5
推荐指数
2
解决办法
8312
查看次数

使用正则表达式删除所有独有的拉丁字符

我正在开发一个葡萄牙语软件,因此我的许多实体都有'maça'或'lição'等名称,我想将该实体用作资源键.所以我想保留除'ç,ã,õ......之外的所有角色.

使用正则表达式有一些最佳解决方案?我的实际正则表达式是(使用正则表达式删除字符建议):

Regex regex = new Regex(@"[\W_]+");
string cleanText = regex.Replace(messyText, "").ToUpper();
Run Code Online (Sandbox Code Playgroud)

只是为了强调,我只担心拉丁字符.

c# regex resources

10
推荐指数
2
解决办法
8309
查看次数

计算代码的触发器!

这真的花了我的时间.我找不到一种简单的方法来估计下面代码(循环)的FLOPS,循环的单次迭代有多少FLOPS:

float func(float * atominfo, float energygridItem, int xindex, int yindex)
{
   ...
   for (atomid=0; atomid<numatoms*4; atomid+=4) 
   {
       float dy = coory - atominfo[atomid+2];
       float dysqpdzsq = (dy * dy) + atominfo[atomid+3];
       float dx1 = coorx1 - atominfo[atomid+1];

       float s, y, t;
       s = atominfo[atomid] * (1.0f / sqrtf(dx1*dx1 + dysqpdzsq));
       y = s - energycomp1;
       t = energyvalx1 + y;
       energycomp1 = (t - energyvalx1)  - y;
       energyvalx1 = t;
    }
    ...
}
Run Code Online (Sandbox Code Playgroud)

它看起来很简单,但我对之前给出的其他一些数字感到困惑,所以如果有人能给出一个确切的数字会很棒.

谢谢.

c c++ flops

5
推荐指数
2
解决办法
3048
查看次数

Qt是一个符合C++的实现吗?

C++标准是否隐式或明确地允许这样的语言扩展(或使用您喜欢的任何其他术语)作为MOC?

也就是说,我们可以在技术上将Qt(包括MOC)称为符合C++的实现吗?

c++ qt language-lawyer

0
推荐指数
2
解决办法
375
查看次数

通过点击补丁来查找mercurial中的变更集

有没有办法在mercurial中通过在编辑中提供模式(更改的代码)来查找更改,而不是日志消息或文件名?

我在"hg help revsets"中看起来非常彻底,我认为没有一个好方法可以做到这一点.这是我想出的最好的黑客,但我希望我错过了一个能力,或者有人可以做得更好.

hg log -M -u goldberg -p | grep '(^changeset:\|<pattern>)' | grep -C 1 '<pattern>'

(然后手动选择修订版号以便以后使用这些修订版)

mercurial

21
推荐指数
1
解决办法
7330
查看次数

shared_ptr - 按值传递vs按引用传递

假设我有:

typedef boost::shared_ptr<Event> EventPtr;
Run Code Online (Sandbox Code Playgroud)

在一个线程上,我正在创建一个Event并将其发送以进行调度:

Event* event = new Event();
EventPtr eventPtr(event);
EventDispatcher::dispatch(eventPtr);  //pseudocode
Run Code Online (Sandbox Code Playgroud)

EventDispatcher接收EventPtr并将其添加到被另一个线程处理的队列......但什么是调度方法的适当方法签名?

dispatch(EventPtr event);  //will push_back(event)
Run Code Online (Sandbox Code Playgroud)

要么

dispatch(const EventPtr& event);  //will push_back(event);
Run Code Online (Sandbox Code Playgroud)

考虑到我的EventDispatcher有一个队列:

typedef std::queue<EventPtr> EventQueue
EventQueue theQueue;
Run Code Online (Sandbox Code Playgroud)

然后,另一个线程从队列中弹出一个事件并将其移交给处理事件的东西:

EventPtr event = theQueue.front();
EventProcessor::process(event);  //pseudocode
theQueue.pop();
Run Code Online (Sandbox Code Playgroud)

同样,该方法的适当方法签名是process什么?我想知道我是否可以将裸体传递Event*给过程方法?

我想我想知道我应该只是按值传递所以引用计数是准确的吗?我真的只关心一个线程正在推入队列而另一个线程从队列中弹出的事实,我不会在某处泄漏指针......

谢谢!

c++ boost smart-pointers

8
推荐指数
1
解决办法
5453
查看次数

使用约束执行区域

我有一个Visual Studio 2008 C#.NET 3.5应用程序P/Invokes一个接受文件句柄作为参数的本机方法.最初,我只是使用FileStream.SafeFileHandle.DangerousGetHandle()来获取文件句柄.但是,在启用FX COP之后,我收到了CA2001的警告.因此,经过一番研究后,我发现了"约束执行区域".这对我来说是新的,我还没有看到很多关于它的信息.我希望有经验的人可以看看并验证我是否已正确完成此操作.

class MyClass
{
    public static bool Write(string filename)
    {
        using (var fs = new System.IO.FileStream(filename, 
            System.IO.FileMode.Create, 
            System.IO.FileAccess.Write, 
            System.IO.FileShare.None))
        {
            bool got_handle;
            bool result;

            System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegions();
            try { }
            finally
            {
                fs.SafeFileHandle.DangerousAddRef(ref got_handle);
                result = NativeMethods.Foo(fs.SafeFileHandle.DangerousGetHandle());
                if (got_handle)
                    fs.SafeFileHandle.DangerousRelease();   
            }

            return result;
        }
    }
}

internal sealed class NativeMethods
{
    [DllImport("mylib.dll",
        EntryPoint = "Foo",
        CallingConvention = CallingConvention.StdCall,
        CharSet = CharSet.Unicode,
        ExactSpelling = true, 
        SetLastError = true)]
    public static extern bool Foo(IntPtr hFile);
}
Run Code Online (Sandbox Code Playgroud)

谢谢,PaulH

c# pinvoke handle cer

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

ASP.NET MVC(razor)在jQuery中使用Model

我想在jQuery函数中依赖于模型的属性(使用带有razor的ASP.NET MVC 3):

jQuery.datepicker.setDefaults(jQuery.datepicker.regional['xx']);
Run Code Online (Sandbox Code Playgroud)

要么

jQuery.datepicker.setDefaults(jQuery.datepicker.regional['yy']);
Run Code Online (Sandbox Code Playgroud)

任何的想法 ?

谢谢,

asp.net-mvc jquery jquery-ui razor

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