首页 > TAG信息列表 > 类写

我的麻将类写对没?为啥跟别人的不一样?

package com.xiao.entity; import lombok.Data; import lombok.NoArgsConstructor; import java.util.ArrayList; /** * @ClassName Mahjong * @Author: 肖遥 * @Description 麻将类 * @date 2022/5/14 16:58 * @Version 1.0 */ @Data @NoArgsConstructor public class

基于GenericAPIView和5个视图扩展类写的接口

from rest_framework.mixins import ListModelMixin,CreateModelMixin,UpdateModelMixin,DestroyModelMixin,RetrieveModelMixin # views.py class Book3View(GenericAPIView,ListModelMixin,CreateModelMixin): queryset=Book.objects serializer_class = BookSeri

C++string类写时拷贝

string类内存分配的概念: string类中必有一个私有成员(char*),用户记录从堆上分配内存的地址,其在构造时分配内存,在析构时释放内存;string类在返回这块内存地址时,只返回const char*,也就是只读的,如果你要写,你只能通过string提供的方法进行数据的改写。 在string类中,要实现写时才拷贝