type Order struct {
*Res
Status int
}
type Res struct {
ResID int64
OtaBookID string
StayDetail []*ResElement
TotalCharge float64
CustFName string
CustLName string
CreateTime time.Time
}
type ResElement struct {
Res *Res
OtaEleID string
OtaRoomID string
RoomID int
Arrival time.Time
Depart time.Time
Charge float64
CreateTime time.Time
}
我有一个名为 orderList 的 slice 来记录订单。 现在我有第一个 OtaBookID 是“A123”的订单,我想复制这个订单并将其 OtaBookID 更改为“B123”。 ResElement 类型有一些其他详细信息来记录此订单,我隐藏它们,因为它不会影响我的问题。我可以成功更改 Res.OtaBookID 但我不知道如何更改 Res.StayDetail[0].Res.OtaBookID
func main() {
var orderList []*Order
res := new(Res)
res.OtaBookID = "A123"
resElt := new(ResElement)
resElt.Res = res
res.StayDetail = append(res.StayDetail, resElt)
order := new(Order)
order.Res = res
orderList = append(orderList, order)
originalOrder := new(Order)
originalOrder.Res = new(Res)
*originalOrder.Res = *order.Res
//originalOrder.Res.StayDetail[0].Res.OtaBookID = "B123" //this will make all become "B123"
originalOrder.Res.OtaBookID = "B123"
orderList = append(orderList, originalOrder)
fmt.Println(orderList[0].Res.OtaBookID) //A123
fmt.Println(orderList[1].Res.OtaBookID) //B123
fmt.Println(orderList[0].Res.StayDetail[0].Res.OtaBookID) //A123
fmt.Println(orderList[1].Res.StayDetail[0].Res.OtaBookID) //A123, i want this become B123
}
我要的结果是orderList[0].Res.OtaBookID 和orderList[0].Res.StayDetail[0].Res.OtaBookID 是"A123"其他是"B123"
ps:因为我在接手别人的作品。所以三型已经固定,无法调整。我想知道在这种情况下是否有什么方法可以达到我的目标
最佳答案
根据您的示例和说明,我们可以专注于 main 来实现您的目标:
type Order struct {
*Res
Status int
}
type Res struct {
ResID int64
OtaBookID string
StayDetail []*ResElement
TotalCharge float64
CustFName string
CustLName string
CreateTime time.Time
}
type ResElement struct {
Res *Res
OtaEleID string
OtaRoomID string
RoomID int
Arrival time.Time
Depart time.Time
Charge float64
CreateTime time.Time
}
func main() {
var orderList []*Order
res := new(Res)
res.OtaBookID = "A123"
resElt := new(ResElement)
resElt.Res = res
res.StayDetail = append(res.StayDetail, resElt)
order := new(Order)
order.Res = res
orderList = append(orderList, order)
originalOrder := new(Order)
originalOrder.Res = new(Res)
// The following statement will copy the values in the memory space of order to the memory
// space of originalOrder, but take note that a pointer contains a memory address. Thus,
// following this statement originalOrder.Res.StayDetail will point to the same address
// as order.Res.StayDetail as slices are pointers...
*originalOrder.Res = *order.Res
// We now have to manually copy the slice to ensure it is different from the one in order.
// We must create a new slice to avoid overwriting the source.
originalOrder.Res.StayDetail := make([]*ResElement, len(order.Res.StayDetail))
// Further, this slice contains pointers so we must copy these as well to ensure they do not
// point to the ResElements of order.
for i, v := range order.Res.StayDetail {
re := new(ResElement)
// copy the values of the memory in v to the values in the memory of re
*re = *v
// set re.Res to point to originalOrder.Res as it currently point to order.Res
re.Res = originalOrder.Res
// Now we must place re in the slice of originalOrder as it currently points to an
// empty array of the correct size. Thus, we will not use append (which will grow
// the size), we will just set the index to the correct value. Thus:
originalOrder.StayDetail[i] = re
}
// The pointers and structures have now been properly set up, thus the following are equivalent:
// originalOrder.OtaBookID = "B123" - Res via embedding
// originalOrder.Res.OtaBookID = "B123" - Res directly
// originalOrder.Res.StayDetail[0].Res.OtaBookID = "B123" - Res via ResElement pointer Res
// They all point to the exact same memory space
originalOrder.Res.OtaBookID = "B123"
orderList = append(orderList, originalOrder)
fmt.Println(orderList[0].Res.OtaBookID) //A123
fmt.Println(orderList[1].Res.OtaBookID) //B123
fmt.Println(orderList[0].Res.StayDetail[0].Res.OtaBookID) //A123
fmt.Println(orderList[1].Res.StayDetail[0].Res.OtaBookID) //B123
}
永远记住,指针只是一个内存地址。如果地址值为 0xffab67e1,则指针的副本也将包含与 0xffab67e1 相同的值,并有效地指向同一事物。因此,您必须故意在新地址分配新的内存空间并复制内部值。必须对包含指针的任何结构执行此操作。我们称之为深度复制或克隆。
关于golang 从指针类型 slice 复制指针值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51356836/
我可以得到Infinity和NaNn=9.0/0#=>Infinityn.class#=>Floatm=0/0.0#=>NaNm.class#=>Float但是当我想直接访问Infinity或NaN时:Infinity#=>uninitializedconstantInfinity(NameError)NaN#=>uninitializedconstantNaN(NameError)什么是Infinity和NaN?它们是对象、关键字还是其他东西? 最佳答案 您看到打印为Infinity和NaN的只是Float类的两个特殊实例的字符串
我不确定传递给方法的对象的类型是否正确。我可能会将一个字符串传递给一个只能处理整数的函数。某种运行时保证怎么样?我看不到比以下更好的选择:defsomeFixNumMangler(input)raise"wrongtype:integerrequired"unlessinput.class==FixNumother_stuffend有更好的选择吗? 最佳答案 使用Kernel#Integer在使用之前转换输入的方法。当无法以任何合理的方式将输入转换为整数时,它将引发ArgumentError。defmy_method(number)
有时我需要处理键/值数据。我不喜欢使用数组,因为它们在大小上没有限制(很容易不小心添加超过2个项目,而且您最终需要稍后验证大小)。此外,0和1的索引变成了魔数(MagicNumber),并且在传达含义方面做得很差(“当我说0时,我的意思是head...”)。散列也不合适,因为可能会不小心添加额外的条目。我写了下面的类来解决这个问题:classPairattr_accessor:head,:taildefinitialize(h,t)@head,@tail=h,tendend它工作得很好并且解决了问题,但我很想知道:Ruby标准库是否已经带有这样一个类? 最佳
我正在尝试解析一个CSV文件并使用SQL命令自动为其创建一个表。CSV中的第一行给出了列标题。但我需要推断每个列的类型。Ruby中是否有任何函数可以找到每个字段中内容的类型。例如,CSV行:"12012","Test","1233.22","12:21:22","10/10/2009"应该产生像这样的类型['integer','string','float','time','date']谢谢! 最佳答案 require'time'defto_something(str)if(num=Integer(str)rescueFloat(s
我正在玩HTML5视频并且在ERB中有以下片段:mp4视频从在我的开发环境中运行的服务器很好地流式传输到chrome。然而firefox显示带有海报图像的视频播放器,但带有一个大X。问题似乎是mongrel不确定ogv扩展的mime类型,并且只返回text/plain,如curl所示:$curl-Ihttp://0.0.0.0:3000/pr6.ogvHTTP/1.1200OKConnection:closeDate:Mon,19Apr201012:33:50GMTLast-Modified:Sun,18Apr201012:46:07GMTContent-Type:text/plain
我想编写一个ruby脚本来递归复制目录结构,但排除某些文件类型。因此,给定以下目录结构:folder1folder2file1.txtfile2.txtfile3.csfile4.htmlfolder2folder3file4.dll我想复制这个结构,但不包含.txt和.cs文件。因此,生成的目录结构应如下所示:folder1folder2file4.htmlfolder2folder3file4.dll 最佳答案 您可以使用查找模块。这是一个代码片段:require"find"ignored_extensions=[".cs"
>>a=5=>5>>b=a=>5>>b=4=>4>>a=>5如何将“b”设置为实际的“a”,以便在示例中,变量a也将变为4。谢谢。 最佳答案 classRefdefinitializeval@val=valendattr_accessor:valdefto_s@val.to_sendenda=Ref.new(4)b=aputsa#=>4putsb#=>4a.val=5putsa#=>5putsb#=>5当您执行b=a时,b指向与a相同的对象(它们具有相同的object_id).当你执行a=some_other_thing时,a将指向
之前有人问过这个问题,我发现了以下clip关于如何一次设置一个类对象的所有属性,但由于批量分配保护,这在Rails中是不可能的。(例如,您不能Object.attributes={})有没有一种很好的方法可以将一个类的属性合并到另一个类中?object1.attributes=object2.attributes.inject({}){|h,(k,v)|h[k]=vifObjectModel.column_names.include?(k);h}谢谢。 最佳答案 利用assign_attributes使用:without_prote
我想使用PostgreSQL中的point类型。我已经完成了:railsgmodelTestpoint:point最终的迁移是:classCreateTests当我运行时:rakedb:migrate结果是:==CreateTests:migrating====================================================--create_table(:tests)rakeaborted!Anerrorhasoccurred,thisandalllatermigrationscanceled:undefinedmethod`point'for#/hom
希望我没有误解“ducktyping”的含义,但从我读到的内容来看,这意味着我应该根据对象如何响应方法而不是它是什么类型/类来编写代码。代码如下:defconvert_hash(hash)ifhash.keys.all?{|k|k.is_a?(Integer)}returnhashelsifhash.keys.all?{|k|k.is_a?(Property)}new_hash={}hash.each_pair{|k,v|new_hash[k.id]=v}returnnew_hashelseraise"CustomattributekeysshouldbeID'sorPropertyo