问题列表 - 第21313页

我怎么打印很长的?这不应该工作吗?李%

我阅读了文档,它说很长的是%li但打印出来的时候是-2147024891.是什么赋予了?

c printf

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

将NSDate与[NSDate日期]进行比较

我试图强制用户使用日期选择器选择将来的日期.我显然使用了compare:方法,但是,当我执行以下代码时,即使它与[NSDate date]的日期相同,它也会告诉执行if语句.这是我的代码:

    if ([datePicker.date compare:[NSDate date]] == NSOrderedAscending) // If the picked date is earlier than today
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hmm, this date is earlier than today" 
                                                    message:@"The date you've selected is earlier than today's date, please pick another" 
                                                   delegate:nil  
                                          cancelButtonTitle:@"Okay, I'll pick another" 
                                          otherButtonTitles:nil];
    // Show the alert
    [alert show];

    // Release the alert
    [alert release];
}
Run Code Online (Sandbox Code Playgroud)

iphone compare datepicker nsdate uidatepicker

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

实现不安全的Java接口

我最近在使用Spring Security进行开发时遇到了问题.它有一个GrantedAuthority带有以下签名的界面:

public interface GrantedAuthority extends Serializable, Comparable
Run Code Online (Sandbox Code Playgroud)

至于Java 1.5及更高版本,接口Comparable采用了一个类型参数T,在Spring Security库中省略了(显然,对于JVM 1.4兼容性).

所以我想GrantedAuthority在Scala中实现.

class Role extends GrantedAuthority {
  . . .
  def compareTo(obj: Any): Int = obj match {
    case (r: Role) => r.toString.compareTo(this.toString)
    case _ => -1
  }
}
Run Code Online (Sandbox Code Playgroud)

它不编译:

error: class Role needs to be abstract, since method compareTo in trait Comparable of type (T)Int is not defined
Run Code Online (Sandbox Code Playgroud)

如何在Scala中实现这样的接口?

inheritance scala language-interoperability

6
推荐指数
1
解决办法
313
查看次数

在MySQL中选择按小时分组的日期/时间分组

我在mysql表中有一堆日期数据,如下所示:

2010-02-13 1:00:00, "soma data"
2010-02-13 1:25:00, "soma data"
2010-02-13 1:37:00, "soma data"
2010-02-13 2:12:00, "soma data"
Run Code Online (Sandbox Code Playgroud)

我想选择一个显示按小时分组的数据的报告,例如:

On Feb 13, during the hour from 1:00 pm to 1:59 pm, there were 3 data points.
On Feb 13, during the hour from 2:00 pm to 2:59 pm, there was 1 data points.
...
Run Code Online (Sandbox Code Playgroud)

基本上我想报告一天中每小时发生的累计记录数量.所以最终结果会给我一个10天的报告,以24小时为增量进行分解,这样我就可以看到在任何给定的一天中任何给定时间内有多少数据.

TIA,希望你能帮忙!

php mysql sql datetime

7
推荐指数
1
解决办法
9036
查看次数

用模拟对象进行单元测试

请查看以下有关使用模拟测试的文章

所以有一个使用模拟对象进行单元测试的例子.如您所见,测试是针对GetPersonByID方法编写的.在IPersonServices接口还有另一种方法:List<Person> GetPersons();

谁能告诉我这个服务的Test方法应该如何使用模拟对象?例如,在GetPersons具有List类型的情况下.

unit-testing rhino-mocks mocking

0
推荐指数
1
解决办法
749
查看次数

Microsoft 报告服务与 ssrs

ms 报告服务和 ssrs 之间有什么区别吗?ssrs 是否成功了 ms 报告服务?

reporting-services

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

在MPI进程之间传递可变长度的结构

我需要MPI_Gatherv()一些int/string对.让我们说每一对看起来像这样:

struct Pair {
  int x;
  unsigned s_len;
  char s[1]; // variable-length string of s_len chars
};
Run Code Online (Sandbox Code Playgroud)

如何为Pair定义合适的MPI数据类型?

c mpi

5
推荐指数
1
解决办法
3369
查看次数

在未从现有终端调用时阻止控制台应用关闭?

这类问题有很多变种.但是我特别想办法防止Python中的控制台应用程序在没有从终端(或其他控制台调用,因为它可能在Windows上调用)时调用.可能发生这种情况的一个示例是双击.pyWindows资源管理器中的文件.

通常我使用类似下面的代码片段,但即使从现有终端调用应用程序,它也会产生令人遗憾的副作用:

def press_any_key():
    if os.name == "nt":
        os.system("pause")
atexit.register(press_any_key)
Run Code Online (Sandbox Code Playgroud)

它还假设所有Windows用户都从Windows"shell"调用该应用程序,并且只有Windows用户才能从现有终端以外的位置执行该程序.

是否有(最好是跨平台)方式来检测我的应用程序是否已从终端调用,和/或是否有必要为当前运行的实例提供"按任意键..."功能?请注意,采用批处理,bash或任何其他"包装器进程"解决方法是非常不受欢迎的.

Update0

使用下面的Alex Martelli的答案,我已经产生了这个功能:

def register_pause_before_closing_console():
    import atexit, os
    if os.name == 'nt':
        from win32api import GetConsoleTitle
        if not GetConsoleTitle().startswith(os.environ["COMSPEC"]):
            atexit.register(lambda: os.system("pause"))

if __name__ == '__main__':
    register_pause_before_closing_console()
Run Code Online (Sandbox Code Playgroud)

如果出现其他合适的答案,我会为其他平台和桌面环境添加更多代码.

UPDATE1

在使用pywin32的过程中,我已经使用接受的答案生成了这个函数,函数改进了上面的函数.注释掉的代码是源自Update0的替代实现.如果不能使用pywin32,请按照接受的答案中的链接进行操作.暂停或getch()品尝.

def _current_process_owns_console():
    #import os, win32api
    #return not win32api.GetConsoleTitle().startswith(os.environ["COMSPEC"])

    import win32console, win32process
    conswnd = win32console.GetConsoleWindow()
    wndpid = win32process.GetWindowThreadProcessId(conswnd)[1]
    curpid = win32process.GetCurrentProcessId()
    return curpid == wndpid

def register_pause_before_closing_console():
    import …
Run Code Online (Sandbox Code Playgroud)

python terminal console persistence console-application

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

如何将DateTime值C#转换为类似于2009年1月31日的东西,但是使用波兰语?

如何将DateTime.Now(或基本上任何其他DateTime格式)转换为类似于2009年1月31日的东西(虽然我希望它在波兰语中,所以我需要29Styczeń2009).我是否需要创建一些数组并使用该数组检查每个月的数字,或者有一些内置功能来保存这一天?

带着敬意,

疯狂的男孩

c# datetime c#-3.0

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

防止SQL注入/好Ruby方法

Ruby中防止SQL注入的好方法是什么?

ruby sql-injection

5
推荐指数
1
解决办法
5781
查看次数