plt.ion()
plt.figure(1)
t = [0]
t_now = 0
m = [math.sin(t_now)]
for i in range(100):
plt.clf()
t_now = i * 0.1
t.append(t_now)
m.append(math.sin(t_now))
plt.plot(t, m, '-r')
plt.pause(0.01)
plt.ioff()
plt.show()
#include<iostream>
#include<cassert>
using namespace std;
template<class T, int SIZE = 50>
class Stack{
private:
T list[SIZE];//数组存放栈的元素
int top;//栈顶位置
public:
Stack(
Gson提供了丰富的预定义类型适配器,在对象和JSON串之间进行序列化和反序列化时,指定对象和字符串之间的转换方式,
DateTypeAdapter
public final class DateTypeAdapter extends TypeAdapter<Date> {
public static final TypeAdapterFacto