我创建了如下所示的类。跟随有什么问题吗?我只是遵循别人的方式,但它不断给我,``测试运行失败:文件script.js具有无效的语法''。我非常努力地搜寻,我认为他们没有任何例外。您能为此提供一些建议吗?
public int getHours() {
return Math.abs((this.fTimeInMin - this.sTimeInMin) / 60);
}
public int getMinutes() {
return Math.abs((this.fTimeInMin - this.sTimeInMin) % 60);
}
答案 0 :(得分:0)
您不能在课程正文中进行分配。您可以在构造函数中执行此操作,也可以使用TypeScript。
import numpy as np
import matplotlib.pyplot as plt
import pylab
true_stress_2 = [ 0., 190.8, 402.8, 614.8, 825.8, 986.8, 1046.8, 1073.8, 1092.8,
1106.8, 1113.8, 1119.8, 1125.8, 1131.8, 1136.8, 1141.8, 1146.8, 1151.8,
1160.8, 1178.8, 1194.8, 1210.8, 1228.8, 1246.8, 1264.8, 1282.8, 1316.8,
1349.8, 1382.8, 1415.8, 1448.6, 1481.6, 1513.6, 1546.6, 1579.6, 1612.6,
1644.6, 1677.6, 1710.6, 1743.4]
#true_stress_2.sort ()
#print (true_stress_2)
plt.plot(true_strain,true_stress_1) #first graph is blue one
plt.plot(true_strain, true_stress_2) #second graph is orange one
plt.xlabel('True Strain [-]') #label for x axis
plt.ylabel('True Stress (MPa)') #label for y axis
plt.title('Tensile Stress-Strain Curve'); #plot title
plt.legend()