编辑**谢谢大家的帮助!非常感谢!
对于所有必须看这个并嘲笑新手的高级程序员而言,我很抱歉。
有人能告诉我如何调用方法来反转字符串并打印出它返回的文本吗?非常感谢,伙计们!
这是我的代码
let startTime = 0;
$scope.mouseDownStudent = function() {
// Capture current time
startTime = new Date();
}
$scope.mouseUpStudent = function() {
// Get current time
let currentTime = new Date();
// Get elapsed time in ms
let elapsedTime = currentTime - startTime;
if (elapsedTime > 100) { ... }
}
答案 0 :(得分:0)
将您的main
方法更改为
public static void main(String [] args) {
System.out.println("Please enter the text you would like reversed.");
System.out.println(new Palindrome ().reverseString ());
}
由于该方法不是静态的,因此您需要先创建Palindrome
类型的对象,然后才能使用它。 <scoff></scoff>
正如其他人所提到的,也可以将reverseString
方法作为静态方法,从而消除了创建Palindrome
对象的必要性。咨询this link
答案 1 :(得分:0)
你可以做一些事情。由于您的方法reverseString
未标记关键字static
,因此默认情况下它是一种实例方法。这意味着要使用它,您需要创建一个Palindrome对象。
将其用作实例方法:
public static void main(String[] args)
{
System.out.println("Please enter the text you would like reversed.");
System.out.println(new Palindrome().reverseString());
}
或者,您可以使用关键字static
将其声明为类方法,而不必经历创建对象以使用该方法的麻烦(参见下文)。
将其用作课程方法:
将reverseString()
方法的标题更改为:
public static String reverseString() {
然后从你的主要:
public static void main(String [] args) {
System.out.println("Please enter the text you would like reversed.");
System.out.println(reverseString());
}
答案 2 :(得分:0)
您的代码存在一些问题。
代码:
MySQLi