Skip to content

Instantly share code, notes, and snippets.

<UserControl x:Class="TV_MeshCreator.UserControls.UCClipProcessing"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:converters="clr-namespace:TV_MeshCreator.Converters"
xmlns:local="clr-namespace:TV_MeshCreator.UserControls.CircleProgressBar"
xmlns:res="clr-namespace:TV_MeshCreator.Properties"
xmlns:vm="clr-namespace:TV_MeshCreatorEngine.Model.Binding;assembly=TV_MeshCreatorEngine"
Background="WhiteSmoke"
class MyMain
{
private MyFirstEnum myType = MyFirstEnum.DOCUMENT; //Type that I know according to my object
public void Boo()
{
//Here I need to create new Foo obeject that get
//MySecondEnum as a param, but this MySecondEnum is not compatible with MyFirstEnum
//what I need to do here?
#include <iostream>
#include <thread>
#include <chrono>
#include <vector>
std::mutex m_mtx;
std::vector<std::string> m_fileStreamer;
int getStreamInd(const std::string & fileId)
{
fp = fopen("/tmp/test.txt", "r");
if (fp == NULL)
{
printf("\nERROR : file open failed\n");
return 0;
}
while (fgets(buffer, MAX_NAME_LENGTH, (FILE *)fp))
{
/**
* This class presents collection of {@link Box3D} objects
* in sorter consequences from the most little to the most biggest
*
* @author Aleksey Timoshchenko
* @version 15.04.19
*/
public class Collection
{
private Box3D[] _boxes;
/**
* Method should find in closed range the smallest volume of box
*
* @param i start index
* @param j end index
*
* @return volume of the smallest box
*/
/*# Joni: bug caused an exception. see soluion below. */
package ui.fragments.base;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.widget.ImageView;
import android.widget.TextView;
import butterknife.BindView;
import il.co.ewave.elal.R;
BookingReservationAPI api = new BookingReservationAPI("<username>",
"<password>",
new BookingReservationHandler() {
@Override
public BookingReservationAcknowledgement handle(BookingReservation reservation) {
// Handle reservation.
}
});
api.pullPeriodically(); // Create a separate thread internally.
api.cancelPeriodicPull(); // Only use if you really need to cancel periodic pull!
/* Externalizable Person
Класс Person должен сериализоваться с помощью интерфейса Externalizable.
Подумайте, какие поля не нужно сериализовать.
Исправьте ошибку сериализации.
Сигнатуры методов менять нельзя.
*/
public class Solution {
public static void main(String[] args) throws IOException, ClassNotFoundException {
Person person = new Person("Ivan", "Ivanov", 23);
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/* Читаем и пишем в файл: Human
Реализуйте логику записи в файл и чтения из файла для класса Human
Поле name в классе Human не может быть пустым
В файле your_file_name.tmp может быть несколько объектов Human
Метод main реализован только для вас и не участвует в тестировании